From cf14306c2b3f82a81f8d56669a71633b4d4b5fce Mon Sep 17 00:00:00 2001
From: marvin-borner@live.com
Date: Mon, 16 Apr 2018 21:09:05 +0200
Subject: Main merge to user management system - files are now at /main/public/

---
 assets/css/main.css  | 250 ---------------------------------------------------
 assets/css/slick.css |   2 -
 2 files changed, 252 deletions(-)
 delete mode 100755 assets/css/main.css
 delete mode 100755 assets/css/slick.css

(limited to 'assets/css')

diff --git a/assets/css/main.css b/assets/css/main.css
deleted file mode 100755
index 68bb4a3..0000000
--- a/assets/css/main.css
+++ /dev/null
@@ -1,250 +0,0 @@
-/******
-GENERAL
-******/
-* {
-    -webkit-touch-callout: none;
-    -webkit-user-select: none;
-    -moz-user-select: none;
-    -ms-user-select: none;
-    user-select: none;
-    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-    -webkit-overflow-scrolling: touch;
-
-    outline: none;
-    ie-dummy: expression(this.hideFocus=true);
-}
-
-::-webkit-scrollbar {
-    width: 0;
-    background: transparent;
-}
-
-body {
-    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
-    height: 100%;
-    width: 100%;
-    overflow: hidden;
-    background-color: #0c1d34;
-    color: #426A91;
-    margin: 0;
-    padding: 0;
-    border: 0;
-}
-
-.main {
-    height: 100%;
-}
-
-a {
-    text-decoration: none;
-    color: #4a93c0;
-}
-
-hr {
-    width: 100%;
-    display: block;
-    height: 1px;
-    border: 0;
-    border-top: 1px solid #112a42;
-    margin: 1em 0;
-    padding: 0;
-}
-
-/*******
-FLICKITY
-*******/
-.main-carousel {
-    background: #EEE;
-}
-
-.carousel-cell {
-    width: 100%;
-    height: calc(100vh - 75px);
-    height: -moz-calc(100vh - 75px);
-    height: -webkit-calc(100vh - 75px);
-    height: -o-calc(100vh - 75px);
-    height: calc(100vh - 75px);
-    background: #0c1d34;
-    counter-increment: carousel-cell;
-}
-
-/******
-HEADER
-******/
-.header {
-    display: flex;
-    flex-wrap: nowrap;
-    justify-content: space-between;
-    align-content: center;
-    margin: 20px;
-}
-
-.LeftButtonHeader {
-    width: 20px;
-    height: 20px;
-    -webkit-filter: invert(.5);
-    -moz-filter: invert(.5);
-}
-
-.HeaderCaption {
-    color: lightgrey;
-}
-
-.RightButtonHeader {
-    width: 20px;
-    height: 20px;
-    -webkit-filter: invert(.5);
-    -moz-filter: invert(.5);
-}
-
-/***********
-GENERAL TABS
-***********/
-.MainInTab {
-    height: 100%;
-}
-
-/**********
-CHAT WINDOW
-**********/
-.ChatWindow {
-    position: relative;
-    height: 100%;
-    margin: 5px;
-}
-
-.ChatMessages {
-    overflow-y: scroll;
-    max-height: calc(100% - 135px); /* navbar + input + some margin*/
-    max-height: -moz-calc(100% - 135px);
-    max-height: -webkit-calc(100% - 135px);
-    max-height: -o-calc(100% - 135px);
-    height: 100%;
-    width: 100%;
-}
-
-.ChatMessage {
-    display: block;
-    position: relative;
-    min-width: 50px;
-    max-width: 50%;
-    width: auto;
-    height: auto;
-    word-wrap: break-word;
-    text-align: center;
-    padding: 10px;
-}
-
-.ServerChatMessage {
-    display: inline-block;
-    position: relative;
-    left: 50%;
-    transform: translateX(-50%);
-    text-align: center;
-    padding: 5px;
-    -webkit-border-radius: 25px;
-    -moz-border-radius: 25px;
-    border-radius: 25px;
-    background: linear-gradient(to right, #ad4eff, #7c41f9);
-    color: #FFF;
-    font-size: x-small;
-}
-
-.MessageSent {
-    float: right;
-    background-color: #12213b;
-}
-
-.AloneMessage {
-    -webkit-border-radius: 25px;
-    -moz-border-radius: 25px;
-    border-radius: 25px;
-}
-
-.TopMessage {
-    -webkit-border-radius: 25px 25px 10px 10px;
-    -moz-border-radius: 25px 25px 10px 10px;
-    border-radius: 25px 25px 10px 10px;
-}
-
-.MiddleMessage {
-    -webkit-border-radius: 10px;
-    -moz-border-radius: 10px;
-    border-radius: 10px;
-}
-
-.BottomMessage {
-    -webkit-border-radius: 10px 10px 25px 25px;
-    -moz-border-radius: 10px 10px 25px 25px;
-    border-radius: 10px 10px 25px 25px;
-}
-
-.MessageReceived {
-    float: left;
-    background-color: #13223c;
-}
-
-.ChatInput {
-    position: absolute;
-    margin: auto;
-    bottom: 90px; /* 75+15 */
-    left: 0;
-    z-index: 600;
-    width: 100%;
-    height: 40px;
-    border: none;
-    color: #FFF;
-    background-color: #13223C;
-}
-
-#ChatTextInput {
-    display: none;
-}
-
-/*****
-NAVBAR
-*****/
-.Navbar {
-    display: flex;
-    flex-wrap: nowrap;
-    justify-content: center;
-    align-content: center;
-    position: absolute;
-    bottom: 0;
-    left: 0;
-    height: 75px;
-    width: 100%;
-    background-color: #13223c;
-}
-
-.NavbarIconWrap {
-    margin: auto;
-}
-
-.NavbarIconWrap img {
-    height: 30px;
-    width: 30px;
-    filter: invert(.5);
-    -webkit-filter: invert(.5);
-    -moz-filter: invert(.5);
-}
-
-.NavbarLine {
-    position: absolute;
-    bottom: 73px;
-    left: 0;
-    width: 20% !important;
-    height: 2px;
-    background: #eb12b5;
-}
-
-.ActiveTab {
-    -webkit-transition: -moz-transform .3s ease-out;
-    -moz-transition: -webkit-transform .3s ease-out;
-
-    filter: invert(19%) sepia(93%) saturate(4612%) hue-rotate(303deg) brightness(98%) contrast(101%);
-    -webkit-filter: invert(19%) sepia(93%) saturate(4612%) hue-rotate(303deg) brightness(98%) contrast(101%);
-    -moz-filter: invert(19%) sepia(93%) saturate(4612%) hue-rotate(303deg) brightness(98%) contrast(101%);
-}
diff --git a/assets/css/slick.css b/assets/css/slick.css
deleted file mode 100755
index f2465cb..0000000
--- a/assets/css/slick.css
+++ /dev/null
@@ -1,2 +0,0 @@
-.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
-/*# sourceMappingURL=slick.min.css.map */
\ No newline at end of file
-- 
cgit v1.2.3