12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157 |
- <template>
- <div class="upper-container">
- <banned v-if="banned" />
- <div v-else class="upper-container">
- <router-view :key="$route.fullPath" class="main-container" />
- <what-is-new v-show="modals.whatIsNew" />
- <login-modal v-if="modals.login" />
- <register-modal v-if="modals.register" />
- </div>
- </div>
- </template>
- <script>
- import { mapState, mapActions, mapGetters } from "vuex";
- import Toast from "toasters";
- import ws from "./ws";
- import aw from "./aw";
- import keyboardShortcuts from "./keyboardShortcuts";
- export default {
- components: {
- WhatIsNew: () => import("@/components/modals/WhatIsNew.vue"),
- LoginModal: () => import("@/components/modals/Login.vue"),
- RegisterModal: () => import("@/components/modals/Register.vue"),
- Banned: () => import("@/pages/Banned.vue")
- },
- replace: false,
- data() {
- return {
- apiDomain: "",
- socketConnected: true,
- keyIsDown: false
- };
- },
- computed: {
- ...mapState({
- loggedIn: state => state.user.auth.loggedIn,
- role: state => state.user.auth.role,
- username: state => state.user.auth.username,
- userId: state => state.user.auth.userId,
- banned: state => state.user.auth.banned,
- modals: state => state.modalVisibility.modals,
- currentlyActive: state => state.modalVisibility.currentlyActive,
- nightmode: state => state.user.preferences.nightmode,
- activityWatch: state => state.user.preferences.activityWatch
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- watch: {
- socketConnected(connected) {
- if (!connected) this.disconnectedMessage.show();
- else this.disconnectedMessage.hide();
- },
- nightmode(nightmode) {
- if (nightmode) this.enableNightMode();
- else this.disableNightMode();
- },
- activityWatch(activityWatch) {
- if (activityWatch) aw.enable();
- else aw.disable();
- }
- },
- async mounted() {
- document.onkeydown = ev => {
- const event = ev || window.event;
- const { keyCode } = event;
- const shift = event.shiftKey;
- const ctrl = event.ctrlKey;
- const alt = event.altKey;
- const identifier = `${keyCode}.${shift}.${ctrl}`;
- if (this.keyIsDown === identifier) return;
- this.keyIsDown = identifier;
- keyboardShortcuts.handleKeyDown(event, keyCode, shift, ctrl, alt);
- };
- document.onkeyup = () => {
- this.keyIsDown = "";
- };
- keyboardShortcuts.registerShortcut("closeModal", {
- keyCode: 27,
- shift: false,
- ctrl: false,
- handler: () => {
- if (Object.keys(this.currentlyActive).length !== 0)
- this.closeCurrentModal();
- }
- });
- if (localStorage.getItem("github_redirect")) {
- this.$router.push(localStorage.getItem("github_redirect"));
- localStorage.removeItem("github_redirect");
- }
- this.disconnectedMessage = new Toast({
- content: "Could not connect to the server.",
- persistent: true,
- interactable: false
- });
- this.disconnectedMessage.hide();
- ws.onConnect(true, () => {
- this.socketConnected = true;
- });
- ws.onDisconnect(true, () => {
- this.socketConnected = false;
- });
- this.apiDomain = await lofig.get("apiDomain");
- this.$router.onReady(() => {
- if (this.$route.query.err) {
- let { err } = this.$route.query;
- err = err
- .replace(new RegExp("<", "g"), "<")
- .replace(new RegExp(">", "g"), ">");
- this.$router.push({ query: {} });
- new Toast({ content: err, timeout: 20000 });
- }
- if (this.$route.query.msg) {
- let { msg } = this.$route.query;
- msg = msg
- .replace(new RegExp("<", "g"), "<")
- .replace(new RegExp(">", "g"), ">");
- this.$router.push({ query: {} });
- new Toast({ content: msg, timeout: 20000 });
- }
- });
- this.socket.dispatch("users.getPreferences", res => {
- if (res.status === "success") {
- const { preferences } = res.data;
- this.changeAutoSkipDisliked(preferences.autoSkipDisliked);
- this.changeNightmode(preferences.nightmode);
- this.changeActivityLogPublic(preferences.activityLogPublic);
- this.changeAnonymousSongRequests(
- preferences.anonymousSongRequests
- );
- this.changeActivityWatch(preferences.activityWatch);
- if (this.nightmode) this.enableNightMode();
- else this.disableNightMode();
- }
- });
- this.socket.on("keep.event:user.session.deleted", () =>
- window.location.reload()
- );
- },
- methods: {
- submitOnEnter: (cb, event) => {
- if (event.which === 13) cb();
- },
- enableNightMode: () => {
- document
- .getElementsByTagName("body")[0]
- .classList.add("night-mode");
- },
- disableNightMode: () => {
- document
- .getElementsByTagName("body")[0]
- .classList.remove("night-mode");
- },
- ...mapActions("modalVisibility", ["closeCurrentModal"]),
- ...mapActions("user/preferences", [
- "changeNightmode",
- "changeAutoSkipDisliked",
- "changeActivityLogPublic",
- "changeAnonymousSongRequests",
- "changeActivityWatch"
- ])
- }
- };
- </script>
- <style lang="scss">
- :root {
- --primary-color: var(--blue);
- --blue: rgb(2, 166, 242);
- --light-blue: rgb(163, 224, 255);
- --dark-blue: rgb(0, 102, 244);
- --teal: rgb(0, 209, 178);
- --purple: rgb(143, 40, 140);
- --light-purple: rgb(170, 141, 216);
- --yellow: rgb(241, 196, 15);
- --light-pink: rgb(228, 155, 166);
- --dark-pink: rgb(234, 72, 97);
- --orange: rgb(255, 94, 0);
- --dark-orange: rgb(250, 50, 0);
- --green: rgb(68, 189, 50);
- --red: rgb(231, 77, 60);
- --white: rgb(255, 255, 255);
- --black: rgb(0, 0, 0);
- --light-grey: rgb(245, 245, 245);
- --light-grey-2: rgb(221, 221, 221);
- --light-grey-3: rgb(195, 193, 195);
- --grey: rgb(107, 107, 107);
- --grey-2: rgb(113, 113, 113);
- --grey-3: rgb(126, 126, 126);
- --dark-grey: rgb(77, 77, 77);
- --dark-grey-2: rgb(51, 51, 51);
- --dark-grey-3: rgb(34, 34, 34);
- --dark-grey-4: rgb(26, 26, 26);
- --youtube: rgb(189, 46, 46);
- }
- .night-mode {
- div {
- // background-color: var(--black);
- color: var(--light-grey-2);
- }
- #toasts-container .toast {
- // color: var(--dark-grey-2);
- // background-color: var(--light-grey-3) !important;
- // &:last-of-type {
- // background-color: var(--light-grey) !important;
- // }
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- color: var(--white) !important;
- }
- p:not(.help),
- label,
- .label {
- color: var(--light-grey-2) !important;
- }
- .section,
- .content {
- background-color: var(--dark-grey-3) !important;
- }
- .content-box,
- .step:not(.selected) {
- background-color: var(--dark-grey-3) !important;
- }
- .tippy-tooltip.songActions-theme {
- background-color: var(--dark-grey);
- }
- }
- body.night-mode {
- background-color: var(--black) !important;
- }
- #toasts-container {
- z-index: 10000 !important;
- .toast {
- font-weight: 600;
- // background-color: var(--dark-grey) !important;
- // &:last-of-type {
- // background-color: var(--dark-grey-2) !important;
- // }
- }
- }
- html {
- overflow: auto !important;
- height: 100%;
- }
- body {
- background-color: var(--light-grey);
- color: var(--dark-grey);
- height: 100%;
- font-family: "Inter", Helvetica, Arial, sans-serif;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- .sidebar-title {
- font-family: "Inter", Helvetica, Arial, sans-serif;
- }
- .modal-card-title {
- font-weight: 600;
- font-family: "Inter", Helvetica, Arial, sans-serif;
- }
- p,
- button,
- input,
- select,
- textarea {
- font-family: "Inter", Helvetica, Arial, sans-serif;
- }
- .upper-container {
- height: 100%;
- }
- .main-container {
- height: 100%;
- display: flex;
- flex-direction: column;
- > .container {
- flex: 1 0 auto;
- }
- }
- a {
- color: var(--primary-color);
- text-decoration: none;
- }
- .modal-card {
- margin: 0 !important;
- }
- .absolute-a {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- }
- .alert {
- padding: 20px;
- color: var(--white);
- background-color: var(--red);
- position: fixed;
- top: 50px;
- right: 50px;
- font-size: 2em;
- border-radius: 5px;
- z-index: 10000000;
- }
- .tippy-tooltip.dark-theme {
- font-size: 14px;
- padding: 5px 10px;
- }
- .night-mode {
- .tippy-tooltip {
- &.dark-theme {
- border: 1px solid var(--light-grey-3);
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
- 0 10px 10px rgba(0, 0, 0, 0.22);
- background-color: white;
- .tippy-content {
- color: var(--black);
- }
- }
- &.songActions-theme {
- background-color: var(--dark-grey-2);
- border: 0 !important;
- i,
- a {
- color: var(--white);
- }
- .youtube-icon {
- background-color: var(--white);
- }
- }
- &.addToPlaylist-theme {
- background-color: var(--dark-grey-2);
- border: 0 !important;
- .nav-dropdown-items {
- .nav-item {
- background-color: var(--dark-grey);
- &:focus {
- outline-color: var(--dark-grey);
- }
- p {
- color: var(--white);
- }
- }
- }
- }
- }
- .tippy-popper[x-placement^="top"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-top-color: var(--dark-grey-2);
- }
- }
- &.dark-theme .tippy-arrow {
- border-top-color: var(--white);
- }
- }
- .tippy-popper[x-placement^="bottom"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-bottom-color: var(--dark-grey-2);
- }
- }
- &.dark-theme .tippy-arrow {
- border-bottom-color: var(--white);
- }
- }
- .tippy-popper[x-placement^="left"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-left-color: var(--dark-grey-2);
- }
- }
- &.dark-theme .tippy-arrow {
- border-left-color: var(--white);
- }
- }
- .tippy-popper[x-placement^="right"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-right-color: var(--dark-grey-2);
- }
- }
- &.dark-theme .tippy-arrow {
- border-right-color: var(--white);
- }
- }
- }
- .tippy-tooltip.info-theme {
- font-size: 12px;
- letter-spacing: 1px;
- }
- .tippy-tooltip.confirm-theme {
- background-color: var(--red);
- padding: 5px 10px;
- a {
- color: var(--white);
- font-size: 15px;
- font-weight: 600;
- &:hover,
- &:focus {
- filter: brightness(90%);
- }
- }
- }
- .tippy-tooltip.songActions-theme {
- font-size: 15px;
- padding: 5px 10px;
- border: 1px solid var(--light-grey-3);
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
- background-color: var(--white);
- .button {
- width: 146px;
- }
- .song-actions,
- .addToPlaylistDropdown,
- .song-actions > div {
- display: inline-block;
- }
- .addToPlaylistDropdown .tippy-popper {
- max-width: unset;
- }
- i,
- a {
- display: inline-block;
- cursor: pointer;
- color: var(--dark-grey);
- vertical-align: middle;
- &:hover,
- &:focus {
- filter: brightness(90%);
- }
- &:not(:first) {
- margin-left: 5px;
- }
- }
- .play-icon {
- color: var(--green);
- }
- .edit-icon,
- .view-icon,
- .add-to-playlist-icon,
- .add-to-queue-icon {
- color: var(--primary-color);
- }
- .hide-icon {
- color: var(--light-grey-3);
- }
- .stop-icon,
- .delete-icon {
- color: var(--red);
- }
- .report-icon {
- color: var(--yellow);
- }
- }
- .tippy-popper[x-placement^="top"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-top-color: var(--white);
- }
- }
- &.confirm-theme .tippy-arrow {
- border-top-color: var(--red);
- }
- }
- .tippy-popper[x-placement^="bottom"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-bottom-color: var(--white);
- }
- }
- &.confirm-theme .tippy-arrow {
- border-bottom-color: var(--red);
- }
- }
- .tippy-popper[x-placement^="left"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-left-color: var(--white);
- }
- }
- &.confirm-theme .tippy-arrow {
- border-left-color: var(--red);
- }
- }
- .tippy-popper[x-placement^="right"] .tippy-tooltip {
- &.songActions-theme,
- &.addToPlaylist-theme {
- .tippy-arrow {
- border-right-color: var(--white);
- }
- }
- &.confirm-theme .tippy-arrow {
- border-right-color: var(--red);
- }
- }
- .tippy-tooltip.addToPlaylist-theme {
- font-size: 15px;
- padding: 5px;
- border: 1px solid var(--light-grey-3);
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
- background-color: var(--white);
- color: var(--dark-grey);
- .nav-dropdown-items {
- .nav-item {
- width: 100%;
- justify-content: flex-start;
- border: 0;
- padding: 10px;
- font-size: 15.5px;
- height: 36px;
- background: var(--light-grey);
- border-radius: 5px;
- cursor: pointer;
- .checkbox-control {
- display: flex;
- flex-direction: row;
- align-items: center;
- p {
- margin-left: 10px;
- }
- .switch {
- position: relative;
- display: inline-block;
- flex-shrink: 0;
- width: 40px;
- height: 24px;
- }
- .switch input {
- opacity: 0;
- width: 0;
- height: 0;
- }
- .slider {
- position: absolute;
- cursor: pointer;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: #ccc;
- transition: 0.2s;
- border-radius: 34px;
- }
- .slider:before {
- position: absolute;
- content: "";
- height: 16px;
- width: 16px;
- left: 4px;
- bottom: 4px;
- background-color: white;
- transition: 0.2s;
- border-radius: 50%;
- }
- input:checked + .slider {
- background-color: var(--primary-color);
- }
- input:focus + .slider {
- box-shadow: 0 0 1px var(--primary-color);
- }
- input:checked + .slider:before {
- transform: translateX(16px);
- }
- }
- &:focus {
- outline-color: var(--light-grey-3);
- }
- &:not(:last-of-type) {
- margin-bottom: 5px;
- }
- }
- }
- .tippy-content > div {
- display: flex;
- flex-direction: column;
- button {
- width: 150px;
- &:not(:last-of-type) {
- margin-bottom: 10px;
- }
- }
- }
- }
- .select {
- &:after {
- border-color: var(--primary-color);
- border-width: 1.5px;
- margin-top: -3px;
- }
- select {
- height: 36px;
- }
- }
- .button:focus,
- .button:active {
- border-color: var(--light-grey-2) !important;
- }
- .input:focus,
- .input:active,
- .textarea:focus,
- .textarea:active,
- .select select:focus,
- .select select:active {
- border-color: var(--primary-color) !important;
- }
- button.delete:focus {
- background-color: rgba(10, 10, 10, 0.3);
- }
- .tag {
- padding-right: 6px !important;
- }
- .button {
- &:hover,
- &:focus {
- filter: brightness(95%);
- }
- &.is-success {
- background-color: var(--green) !important;
- }
- &.is-primary {
- background-color: var(--primary-color) !important;
- }
- &.is-danger {
- background-color: var(--red) !important;
- }
- &.is-info {
- background-color: var(--primary-color) !important;
- }
- &.is-warning {
- background-color: var(--yellow) !important;
- }
- }
- .input,
- .button {
- height: 36px;
- }
- .fadein-helpbox-enter-active {
- transition-duration: 0.3s;
- transition-timing-function: ease-in;
- }
- .fadein-helpbox-leave-active {
- transition-duration: 0.3s;
- transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
- }
- .fadein-helpbox-enter-to,
- .fadein-helpbox-leave {
- max-height: 100px;
- overflow: hidden;
- }
- .fadein-helpbox-enter,
- .fadein-helpbox-leave-to {
- overflow: hidden;
- max-height: 0;
- }
- .control {
- margin-bottom: 5px !important;
- }
- .input-with-button {
- .control {
- margin-right: 0px !important;
- }
- input,
- select {
- width: 100%;
- height: 36px;
- border-radius: 3px 0 0 3px;
- border-right: 0;
- border-color: var(--light-grey-3);
- }
- .button {
- height: 36px;
- border-radius: 0 3px 3px 0;
- }
- }
- .page-title {
- margin: 0 0 50px 0;
- }
- .material-icons {
- user-select: none;
- -webkit-user-select: none;
- }
- .icon-with-button {
- margin-right: 3px;
- font-size: 18px;
- }
- .verified-song {
- font-size: 17px;
- color: var(--primary-color);
- }
- .section-title,
- h4.section-title {
- font-size: 26px;
- font-weight: 600;
- margin: 0px;
- }
- .section-description {
- font-size: 16px;
- font-weight: 400;
- margin-bottom: 10px !important;
- }
- .section-horizontal-rule {
- margin: 15px 0 30px 0;
- }
- .section-margin-bottom {
- height: 30px;
- }
- .margin-top-zero {
- margin-top: 0 !important;
- }
- .margin-bottom-zero {
- margin-bottom: 0 !important;
- }
- /** Universial items e.g. playlist items, queue items, activity items */
- .item-draggable {
- cursor: move;
- }
- .universal-item {
- display: flex;
- flex-direction: row;
- flex-grow: 1;
- align-items: center;
- justify-content: space-between;
- padding: 7.5px;
- border: 1px solid var(--light-grey-3);
- border-radius: 3px;
- overflow: hidden;
- .item-thumbnail {
- width: 65px;
- height: 65px;
- margin: -7.5px;
- border-radius: 3px 0 0 3px;
- }
- .item-title {
- font-size: 20px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .item-description {
- font-size: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .universal-item-actions {
- display: flex;
- flex-direction: row;
- margin-left: 10px;
- justify-content: center;
- @media screen and (max-width: 800px) {
- flex-wrap: wrap;
- }
- .action-dropdown-icon {
- display: flex;
- color: var(--primary-color);
- }
- .song-actions {
- display: flex;
- }
- .button {
- width: 146px;
- }
- i {
- cursor: pointer;
- color: var(--dark-grey);
- &:hover,
- &:focus {
- filter: brightness(90%);
- }
- &:not(:first-of-type) {
- margin-left: 5px;
- }
- }
- .play-icon {
- color: var(--green);
- }
- .edit-icon,
- .view-icon,
- .add-to-playlist-icon {
- color: var(--primary-color);
- }
- .hide-icon {
- color: var(--light-grey-3);
- }
- .stop-icon,
- .delete-icon {
- color: var(--red);
- }
- .report-icon {
- color: var(--yellow);
- }
- }
- }
- .save-button-mixin {
- min-width: 200px;
- &:disabled {
- background-color: var(--light-grey) !important;
- color: var(--black);
- }
- }
- .save-button-transition-enter-active {
- transition: all 0.1s ease;
- }
- .save-button-transition-enter {
- transform: translateX(20px);
- opacity: 0;
- }
- .youtube-icon {
- margin-right: 3px;
- height: 20px;
- width: 20px;
- -webkit-mask: url("/assets/social/youtube.svg") no-repeat center;
- mask: url("/assets/social/youtube.svg") no-repeat center;
- background-color: var(--youtube);
- }
- #forgot-password {
- display: flex;
- justify-content: flex-start;
- margin: 5px 0;
- }
- .steps-fade-enter-active,
- .steps-fade-leave-active {
- transition: all 0.3s ease;
- }
- .steps-fade-enter,
- .steps-fade-leave-to {
- opacity: 0;
- }
- .skip-step {
- background-color: var(--grey-3);
- color: var(--white);
- }
- #steps {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 50px;
- margin-top: 36px;
- @media screen and (max-width: 300px) {
- display: none;
- }
- .step {
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 100%;
- border: 1px solid var(--dark-grey);
- min-width: 50px;
- min-height: 50px;
- background-color: var(--white);
- font-size: 30px;
- cursor: pointer;
- &.selected {
- background-color: var(--primary-color);
- color: var(--white) !important;
- border: 0;
- }
- }
- .divider {
- display: flex;
- justify-content: center;
- width: 180px;
- height: 1px;
- background-color: var(--dark-grey);
- }
- }
- .content-box {
- margin-top: 90px;
- border-radius: 3px;
- background-color: var(--white);
- border: 1px solid var(--dark-grey);
- max-width: 580px;
- padding: 40px;
- @media screen and (max-width: 300px) {
- margin-top: 30px;
- padding: 30px 20px;
- }
- }
- .content-box-optional-helper {
- margin-top: 15px;
- color: var(--primary-color);
- text-decoration: underline;
- font-size: 16px;
- a {
- color: var(--primary-color);
- }
- }
- .content-box-title {
- font-size: 25px;
- color: var(--black);
- }
- .content-box-description {
- font-size: 14px;
- color: var(--dark-grey);
- }
- .content-box-inputs {
- margin-top: 35px;
- .input-with-button {
- .button {
- width: 105px;
- }
- @media screen and (max-width: 450px) {
- flex-direction: column;
- }
- }
- label {
- font-size: 11px;
- }
- #change-password-button {
- margin-top: 36px;
- width: 175px;
- }
- }
- #password-visibility-container {
- display: flex;
- align-items: center;
- a {
- width: 0;
- margin-left: -30px;
- z-index: 0;
- top: 2px;
- position: relative;
- color: var(--light-grey-1);
- }
- }
- .news-item {
- font-family: "Karla";
- border-radius: 5px;
- padding: 20px;
- border: unset !important;
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
- * {
- font-family: Karla, Arial, sans-serif;
- font-size: 16px;
- }
- h1 {
- font-size: 40px;
- &:first-of-type {
- margin-top: 0;
- }
- }
- h2 {
- font-size: 30px;
- }
- h3 {
- font-size: 25px;
- }
- h4,
- h5,
- h6 {
- font-size: 20px;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin: 10px 0;
- }
- ul {
- list-style: unset;
- }
- li {
- margin-left: 30px;
- }
- blockquote {
- padding: 0px 15px;
- color: #6a737d;
- border-left: 0.25em solid #dfe2e5;
- }
- code {
- font-style: italic;
- }
- }
- </style>
|