Merge branch 'new-design-3.0'

This commit is contained in:
supertiger1234 2020-02-08 13:39:45 +00:00
commit a2cf7a91bb
66 changed files with 481 additions and 309 deletions

View file

@ -42,7 +42,7 @@
<!-- Preview meta tags --> <!-- Preview meta tags -->
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet" async> <link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" async>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons&display=swap" rel="stylesheet" async> <link href="https://fonts.googleapis.com/icon?family=Material+Icons&display=swap" rel="stylesheet" async>
<!-- Google recaptcha <!-- Google recaptcha
<script src="https://www.google.com/recaptcha/api.js?onload=vueRecaptchaApiLoaded&render=explicit" async defer> --> <script src="https://www.google.com/recaptcha/api.js?onload=vueRecaptchaApiLoaded&render=explicit" async defer> -->

View file

@ -14,7 +14,7 @@
"type": "image/png" "type": "image/png"
} }
], ],
"theme_color": "#0b4155", "theme_color": "#005799",
"background_color": "#0b4155", "background_color": "#005799",
"display": "standalone" "display": "standalone"
} }

View file

@ -16,7 +16,7 @@ body {
} }
#app { #app {
font-family: "Roboto", sans-serif; font-family: "Montserrat", sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
color: #383838; color: #383838;

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

View file

@ -67,12 +67,12 @@ export default {
font-size: 15px; font-size: 15px;
} }
.frame-buttons .close:hover { .frame-buttons .close:hover {
background: rgba(255, 0, 0, 0.595); background: rgba(255, 0, 0, 0.3);
} }
.frame-buttons .minimize:hover { .frame-buttons .minimize:hover {
background: rgba(46, 46, 46, 0.595); background: rgba(0, 0, 0, 0.3);
} }
.frame-buttons .res-max:hover { .frame-buttons .res-max:hover {
background: rgba(46, 46, 46, 0.595); background: rgba(0, 0, 0, 0.3);
} }
</style> </style>

View file

@ -46,7 +46,7 @@ export default {
.edit-panel { .edit-panel {
padding: 10px; padding: 10px;
color: white; color: white;
background: #012c36; background: #002038;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
z-index: 1; z-index: 1;
@ -60,7 +60,7 @@ export default {
} }
.close-button { .close-button {
color: white; color: white;
background: #304548; background: #0061ad;
padding: 4px; padding: 4px;
align-self: flex-end; align-self: flex-end;
transition: 0.3s; transition: 0.3s;
@ -68,9 +68,6 @@ export default {
cursor: pointer; cursor: pointer;
border-radius: 4px; border-radius: 4px;
} }
.close-button:hover {
background: #485b5d;
}
.message { .message {
color: rgb(214, 214, 214); color: rgb(214, 214, 214);
white-space: nowrap; white-space: nowrap;

View file

@ -147,6 +147,7 @@ export default {
color: white; color: white;
flex-shrink: 0; flex-shrink: 0;
position: relative; position: relative;
background: rgba(0, 0, 0, 0.2);
} }
.tab { .tab {
display: flex; display: flex;
@ -171,10 +172,10 @@ export default {
content: ""; content: "";
position: absolute; position: absolute;
height: 3px; height: 3px;
left: 0; left: 10px;
right: 0; right: 10px;
bottom: 0; bottom: 0;
background: rgb(177, 177, 177); background: rgba(255, 255, 255, 0.4);
} }
.tab::before { .tab::before {
content: ""; content: "";
@ -190,8 +191,8 @@ export default {
content: ""; content: "";
position: absolute; position: absolute;
height: 3px; height: 3px;
left: 0; left: 10px;
right: 0; right: 10px;
bottom: 0; bottom: 0;
background: rgb(255, 255, 255); background: rgb(255, 255, 255);
} }

View file

@ -264,6 +264,10 @@ export default {
flex-shrink: 0; flex-shrink: 0;
} }
.item { .item {
font-size: 24px;
width: 48px;
height: 48px;
margin-left: 14px;
position: relative; position: relative;
display: flex; display: flex;
flex-shrink: 0; flex-shrink: 0;
@ -271,20 +275,16 @@ export default {
align-content: center; align-content: center;
align-items: center; align-items: center;
color: white; color: white;
font-size: 30px;
align-self: center; align-self: center;
width: 50px;
height: 50px;
margin-left: 10px;
border-radius: 50%; border-radius: 50%;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
transition: 0.2s; transition: 0.2s;
&:hover { &:hover {
background: #093b4b; background: rgba(0, 0, 0, 0.3);
} }
&.selected { &.selected {
background: #072c38; background: rgba(0, 0, 0, 0.3);
} }
} }
@ -295,7 +295,8 @@ export default {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
align-content: center; align-content: center;
font-size: 15px; font-size: 14px;
font-weight: bold;
position: absolute; position: absolute;
z-index: 115651; z-index: 115651;
top: 5px; top: 5px;

View file

@ -136,7 +136,7 @@ export default {
} }
.member:hover { .member:hover {
background: #063442; background: rgba(0, 0, 0, 0.3);
} }
.information { .information {
@ -151,9 +151,11 @@ export default {
} }
.type-box { .type-box {
padding: 3px; padding: 4px;
border-radius: 5px; border-radius: 2px;
font-size: 12px;
height: 100%; height: 100%;
margin-right: 10px;
background: rgb(255, 71, 71); background: rgb(255, 71, 71);
} }

View file

@ -162,7 +162,7 @@ export default {
.header { .header {
height: 50px; height: 50px;
width: 100%; width: 100%;
background: #083a4a; background: rgba(0, 0, 0, 0.2);
display: flex; display: flex;
flex-shrink: 0; flex-shrink: 0;
} }
@ -181,5 +181,6 @@ export default {
color: #b5c4ca; color: #b5c4ca;
font-size: 15px; font-size: 15px;
margin-left: 5px; margin-left: 5px;
font-weight: bold;
} }
</style> </style>

View file

@ -343,6 +343,7 @@ export default {
overflow: auto; overflow: auto;
flex: 1; flex: 1;
position: relative; position: relative;
padding-bottom: 23px;
} }
.load-more-button { .load-more-button {
@ -362,35 +363,6 @@ export default {
align-self: center; align-self: center;
} }
} }
.back-to-bottom-button {
&:hover {
background: rgb(23, 124, 255);
box-shadow: 0px 0px 15px 0px #0000008a;
}
transition: 0.2s;
background: rgba(23, 124, 255, 0.818);
color: white;
position: absolute;
bottom: 15px;
right: 25px;
border-radius: 10px;
height: 50px;
z-index: 2;
display: flex;
justify-content: center;
flex-shrink: 0;
box-shadow: 0px 0px 7px 0px #0000008a;
align-content: center;
align-items: center;
padding-left: 10px;
user-select: none;
cursor: pointer;
.material-icons {
align-self: center;
flex-shrink: 0;
font-size: 35px;
}
}
.show-message-animation { .show-message-animation {
animation: showMessage 0.3s ease-in-out; animation: showMessage 0.3s ease-in-out;

View file

@ -36,13 +36,13 @@
}} }}
</div> </div>
</div> </div>
<div class="typing-outer">
<typing-status
v-if="typingRecipients[selectedChannelID]"
:recipients="typingRecipients[selectedChannelID]"
/>
</div>
<div class="chat-input-area" v-if="selectedChannelID"> <div class="chat-input-area" v-if="selectedChannelID">
<div class="typing-outer">
<typing-status
v-if="typingRecipients[selectedChannelID]"
:recipients="typingRecipients[selectedChannelID]"
/>
</div>
<div style="position: relative;"> <div style="position: relative;">
<transition name="show-up"> <transition name="show-up">
<div <div
@ -176,7 +176,8 @@
<div <div
class="no-message-permission" class="no-message-permission"
v-if=" v-if="
sendChannelMessagePermission === false || roleSendMessagePermission === false sendChannelMessagePermission === false ||
roleSendMessagePermission === false
" "
> >
You don't have permission to send messages in this channel. You don't have permission to send messages in this channel.
@ -835,11 +836,13 @@ export default {
} }
.typing-outer { .typing-outer {
display: flex; display: flex;
height: 20px;
margin-bottom: 5px; margin-bottom: 5px;
margin-left: 10px; position: absolute;
top: -25px;
left: 0;
right: 0;
z-index: 1;
} }
.hidden { .hidden {
display: none; display: none;
} }
@ -856,6 +859,7 @@ export default {
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
background: rgba(0, 0, 0, 0.4);
} }
.message-logs { .message-logs {
overflow: auto; overflow: auto;
@ -872,7 +876,7 @@ export default {
flex-direction: column; flex-direction: column;
padding-bottom: 10px; padding-bottom: 10px;
position: relative; position: relative;
background: #014757; background: rgba(0, 0, 0, 0.2);
} }
.attachment-button { .attachment-button {
@ -918,7 +922,7 @@ export default {
} }
.chat-input { .chat-input {
font-family: "Roboto", sans-serif; font-family: "Montserrat", sans-serif;
background: transparent; background: transparent;
color: white; color: white;
width: 100%; width: 100%;
@ -994,16 +998,17 @@ export default {
.back-to-bottom-button { .back-to-bottom-button {
&:hover { &:hover {
background: rgba(0, 0, 0, 0.9); background: rgba(0, 0, 0, 0.8);
} }
transition: 0.2s; transition: 0.2s;
background: rgba(0, 0, 0, 0.8); background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(3px);
border-radius: 100px; border-radius: 100px;
color: white; color: white;
position: absolute; position: absolute;
bottom: 15px; bottom: 30px;
right: 25px; right: 25px;
height: 50px; height: 52px;
z-index: 2; z-index: 2;
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -1011,13 +1016,14 @@ export default {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
align-content: center; align-content: center;
align-items: center; align-items: center;
padding-left: 10px; padding-left: 15px;
padding-right: 10px;
user-select: none; user-select: none;
cursor: pointer; cursor: pointer;
.material-icons { .material-icons {
align-self: center; align-self: center;
flex-shrink: 0; flex-shrink: 0;
font-size: 35px; font-size: 25px;
} }
} }
@ -1037,7 +1043,6 @@ export default {
margin-left: 2px; margin-left: 2px;
margin-bottom: 10px; margin-bottom: 10px;
flex-shrink: 0; flex-shrink: 0;
background: #024b5c;
.markdown-icon { .markdown-icon {
font-size: 21px; font-size: 21px;
flex-shrink: 0; flex-shrink: 0;

View file

@ -68,7 +68,7 @@ export default {
<style scoped> <style scoped>
.heading { .heading {
background: #073240; background: rgba(0, 0, 0, 0.2);
margin-bottom: 0; margin-bottom: 0;
height: 50px; height: 50px;
display: flex; display: flex;

View file

@ -356,8 +356,8 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
$self-message-color: #053746; $self-message-color: rgba(255, 255, 255, 0.1);
$message-color: #03222b; $message-color: rgba(0, 0, 0, 0.3);
.container { .container {
position: relative; position: relative;
@ -387,6 +387,7 @@ $message-color: #03222b;
color: white; color: white;
overflow: hidden; overflow: hidden;
background: $message-color; background: $message-color;
border-radius: 4px;
} }
.presence-message .text { .presence-message .text {
@ -550,6 +551,7 @@ $message-color: #03222b;
margin: auto 0; margin: auto 0;
transition: 0.1s; transition: 0.1s;
cursor: pointer; cursor: pointer;
font-weight: bold;
} }
.username:hover { .username:hover {

View file

@ -103,9 +103,11 @@ export default {
position: relative; position: relative;
flex-shrink: 0; flex-shrink: 0;
align-items: center; align-items: center;
height: 50px; height: 65px;
padding-left: 5px;
padding-right: 5px;
transition: 0.3s; transition: 0.3s;
background-color: #083a4a; background-color: rgba(0, 0, 0, 0.2);
} }
.avatar { .avatar {
@ -129,7 +131,7 @@ export default {
} }
.tag { .tag {
font-size: 13px; font-size: 13px;
color: #b2d1d9; color: rgba(255, 255, 255, 0.72);
} }
} }

View file

@ -315,10 +315,10 @@ export default {
opacity: 0.8; opacity: 0.8;
transition: 0.2s; transition: 0.2s;
&:hover { &:hover {
background: #093b4b; background: rgba(0, 0, 0, 0.2);
} }
&.selected { &.selected {
background: #042a2b; background: rgba(0, 0, 0, 0.2);
} }
} }
@ -355,7 +355,7 @@ export default {
@media (max-width: 600px) { @media (max-width: 600px) {
.navigation { .navigation {
background: linear-gradient(#136a8a, #00b4db); background: #005a9e;
} }
} }
</style> </style>

View file

@ -118,13 +118,18 @@ export default {
margin: auto; margin: auto;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.header { .header {
display: flex; display: flex;
flex-shrink: 0; flex-shrink: 0;
background-color: #05222d; background: rgba(0, 0, 0, 0.4);
color: white; color: white;
height: 50px; height: 50px;
align-content: center; align-content: center;
@ -159,12 +164,16 @@ export default {
align-self: center; align-self: center;
color: white; color: white;
width: initial; width: initial;
background: #024554; background: rgba(0, 0, 0, 0.2);
border-radius: 4px;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
background: #02303c; background: rgba(0, 0, 0, 0.4);
} }
} }
input {
border-radius: 4px;
}
.alerts { .alerts {
display: flex; display: flex;

View file

@ -257,14 +257,19 @@ export default {
color: white; color: white;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.tabs { .tabs {
display: flex; display: flex;
justify-content: center; justify-content: center;
padding-top: 15px; padding-top: 15px;
background: #05222d; background: rgba(0, 0, 0, 0.4);
flex-shrink: 0; flex-shrink: 0;
} }
.tab { .tab {
@ -284,7 +289,7 @@ export default {
border-bottom: solid 5px white !important; border-bottom: solid 5px white !important;
} }
.tab:hover { .tab:hover {
border-bottom: solid 5px rgb(107, 107, 107); border-bottom: solid 5px rgba(255, 255, 255, 0.4);
} }
.content { .content {
@ -322,8 +327,12 @@ export default {
align-self: center; align-self: center;
margin-top: 15px; margin-top: 15px;
margin-bottom: 10px; margin-bottom: 10px;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
border-radius: 4px;
}
.input input {
border-radius: 4px;
} }
.title { .title {
@ -339,7 +348,7 @@ export default {
.button { .button {
padding: 5px; padding: 5px;
background: #024554; background-color: rgba(0, 0, 0, 0.2);
user-select: none; user-select: none;
border: none; border: none;
color: white; color: white;
@ -349,9 +358,10 @@ export default {
align-self: center; align-self: center;
margin: 5px; margin: 5px;
cursor: pointer; cursor: pointer;
border-radius: 4px;
} }
.button:hover { .button:hover {
background: #02303c; background-color: rgba(0, 0, 0, 0.4);
} }
.button-clicked { .button-clicked {

View file

@ -30,7 +30,8 @@
user-select: none; user-select: none;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background-color: #044050; background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
border-radius: 4px; border-radius: 4px;
} }
.material-icons { .material-icons {

View file

@ -82,8 +82,13 @@ export default {
color: white; color: white;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.text { .text {
color: white; color: white;
@ -134,6 +139,7 @@ export default {
transition: 0.3s; transition: 0.3s;
margin-left: 10px; margin-left: 10px;
margin-right: 10px; margin-right: 10px;
border-radius: 4px;
} }
.donate { .donate {
background: rgb(218, 179, 6); background: rgb(218, 179, 6);

View file

@ -101,8 +101,13 @@ export default {
color: white; color: white;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.top { .top {
display: flex; display: flex;
@ -114,14 +119,15 @@ export default {
.button { .button {
padding: 10px; padding: 10px;
background: #062c3a; background: rgba(0, 0, 0, 0.2);
border-radius: 4px;
margin: auto; margin: auto;
transition: 0.3s; transition: 0.3s;
user-select: none; user-select: none;
cursor: pointer; cursor: pointer;
} }
.button:hover { .button:hover {
background: #041e27; background: rgba(0, 0, 0, 0.5);
} }
.bottom { .bottom {
@ -143,7 +149,9 @@ export default {
.invite { .invite {
display: flex; display: flex;
background: rgba(0, 0, 0, 0.274); background: rgba(0, 0, 0, 0.274);
margin: 5px; margin: 1px;
margin-left: 0;
margin-right: 0;
padding: 10px; padding: 10px;
} }
</style> </style>

View file

@ -111,7 +111,7 @@ export default {
rolesMenu.style.top = rolesMenu.style.top =
mainMenuY + mainMenu.clientHeight - rolesMenu.clientHeight + "px"; mainMenuY + mainMenu.clientHeight - rolesMenu.clientHeight + "px";
rolesMenu.style.left = mainMenuX - mainMenu.clientWidth - 22 + "px"; rolesMenu.style.left = mainMenuX - mainMenu.clientWidth - 11 + "px";
}); });
}, },
setPosition() { setPosition() {

View file

@ -50,6 +50,7 @@ export default {
margin-bottom: 10px; margin-bottom: 10px;
} }
.button { .button {
border-radius: 4px;
padding: 10px; padding: 10px;
background: rgba(255, 0, 0, 0.719); background: rgba(255, 0, 0, 0.719);
margin: auto; margin: auto;

View file

@ -88,25 +88,29 @@ export default {
<style scoped> <style scoped>
.drop-down { .drop-down {
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
user-select: none; user-select: none;
cursor: default; cursor: default;
flex-shrink: 0; flex-shrink: 0;
position: relative; position: relative;
border-radius: 4px;
} }
.title { .title {
font-size: 14px;
margin-left: 2px;
margin-bottom: 2px; margin-bottom: 2px;
} }
.current-select-box { .current-select-box {
background: #032d38; background-color: rgba(0, 0, 0, 0.4);
padding: 5px; padding: 5px;
cursor: pointer; cursor: pointer;
display: flex; display: flex;
transition: 0.3s; transition: 0.3s;
border-radius: 4px;
} }
.current-select-box:hover { .current-select-box:hover {
background: #02232b; background-color: rgba(0, 0, 0, 0.5);
} }
.current-select-box div { .current-select-box div {
align-self: center; align-self: center;
@ -125,13 +129,14 @@ export default {
.drop { .drop {
position: absolute; position: absolute;
background-color: #044050; background-color: rgba(0, 0, 0, 0.8);
left: 0; backdrop-filter: blur(5px);
right: 0; left: 10px;
right: 10px;
z-index: 11111; z-index: 11111;
overflow: hidden; overflow: hidden;
padding: 2px; padding: 2px;
margin-top: 5px; margin-top: -2px;
} }
.drop-container { .drop-container {
overflow: auto; overflow: auto;
@ -148,6 +153,7 @@ export default {
white-space: nowrap; white-space: nowrap;
display: flex; display: flex;
cursor: pointer; cursor: pointer;
font-size: 14px;;
} }
.item div { .item div {
align-self: center; align-self: center;
@ -157,10 +163,10 @@ export default {
} }
.item:hover { .item:hover {
background: #033442; background: rgba(255, 255, 255, 0.2);
} }
.item.selected { .item.selected {
background: #021c23; background: rgba(255, 255, 255, 0.25);
} }
.material-icons { .material-icons {
flex-shrink: 0; flex-shrink: 0;

View file

@ -224,7 +224,8 @@ export default {
align-self: center; align-self: center;
margin-top: 10px; margin-top: 10px;
justify-content: center; justify-content: center;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
border-radius: 4px;
flex-shrink: 0; flex-shrink: 0;
.avatar { .avatar {
@ -237,6 +238,7 @@ export default {
margin-top: 35px; margin-top: 35px;
} }
.button { .button {
background: rgba(0, 0, 0, 0.2);
margin-bottom: 16px; margin-bottom: 16px;
} }
} }
@ -249,6 +251,9 @@ export default {
margin-top: 10px; margin-top: 10px;
padding: 5px; padding: 5px;
margin-left: 2px; margin-left: 2px;
.button {
background: rgba(0, 0, 0, 0.2);
}
.banner-image { .banner-image {
position: relative; position: relative;
width: 250px; width: 250px;
@ -292,7 +297,7 @@ export default {
.input { .input {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
align-self: center; align-self: center;
margin: 10px; margin: 10px;
@ -302,9 +307,16 @@ export default {
margin-top: 2px; margin-top: 2px;
margin-bottom: 0; margin-bottom: 0;
width: 190px; width: 190px;
background-color: rgba(0, 0, 0, 0.4);
border-radius: 4px;
}
.input-title {
font-size: 14px;
margin-left: 2px;
} }
.button { .button {
background: #033442; background: rgba(0, 0, 0, 0.3);
border-radius: 4px;
padding: 10px; padding: 10px;
align-self: center; align-self: center;
margin: 5px; margin: 5px;
@ -313,7 +325,7 @@ export default {
transition: 0.3s; transition: 0.3s;
} }
.button:hover { .button:hover {
background: #022831; background: rgba(0, 0, 0, 0.5);
} }
.save-button { .save-button {
margin-top: 10px; margin-top: 10px;

View file

@ -88,9 +88,8 @@ export default {
overflow: auto; overflow: auto;
.member { .member {
display: flex; display: flex;
background: #052935; background: rgba(0, 0, 0, 0.5);
height: 30px; height: 30px;
margin: 5px;
padding: 5px; padding: 5px;
align-content: center; align-content: center;
align-items: center; align-items: center;
@ -122,6 +121,7 @@ export default {
user-select: none; user-select: none;
flex-shrink: 0; flex-shrink: 0;
margin-left: 5px; margin-left: 5px;
font-weight: bold;
} }
} }
} }

View file

@ -212,10 +212,10 @@ export default {
align-self: center; align-self: center;
} }
.channel:hover { .channel:hover {
background: #04232d; background: rgba(0, 0, 0, 0.2);
} }
.channel.selected { .channel.selected {
background: #03191f; background: rgba(0, 0, 0, 0.4);
} }
.add-channel-button { .add-channel-button {
background: rgba(17, 148, 255, 0.692); background: rgba(17, 148, 255, 0.692);
@ -231,16 +231,17 @@ export default {
overflow: hidden; overflow: hidden;
} }
.button { .button {
background: #024554; background: rgba(0, 0, 0, 0.2);
padding: 10px; padding: 10px;
align-self: center; align-self: center;
margin: 5px; margin: 5px;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
transition: 0.3s; transition: 0.3s;
border-radius: 4px;
} }
.button:hover { .button:hover {
background: #02303c; background: rgba(0, 0, 0, 0.4);
} }
.button.warn { .button.warn {
background: rgba(255, 17, 17, 0.692); background: rgba(255, 17, 17, 0.692);
@ -271,16 +272,22 @@ export default {
.input { .input {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
border-radius: 4px;
} }
.input input { .input input {
width: initial; width: initial;
margin-top: 2px; margin-top: 2px;
margin-bottom: 0; margin-bottom: 0;
border-radius: 4px;
} }
.input-title {
font-size: 14px;
margin-left: 2px;
}
.check-box { .check-box {
display: flex; display: flex;
margin: 5px; margin: 5px;

View file

@ -339,10 +339,10 @@ export default {
align-self: center; align-self: center;
} }
.role:hover { .role:hover {
background: #04232d; background: rgba(0, 0, 0, 0.2);
} }
.role.selected { .role.selected {
background: #03191f; background: rgba(0, 0, 0, 0.4);
} }
.add-role-button { .add-role-button {
background: rgba(17, 148, 255, 0.692); background: rgba(17, 148, 255, 0.692);
@ -358,16 +358,17 @@ export default {
overflow: hidden; overflow: hidden;
} }
.button { .button {
background: #024554; background: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
align-self: center; align-self: center;
margin: 5px; margin: 5px;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
transition: 0.3s; transition: 0.3s;
border-radius: 4px;
} }
.button:hover { .button:hover {
background: #02303c; background: rgba(0, 0, 0, 0.6);
} }
.button.warn { .button.warn {
background: rgba(255, 17, 17, 0.692); background: rgba(255, 17, 17, 0.692);
@ -398,7 +399,8 @@ export default {
.input { .input {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #044050; border-radius: 4px;
background-color: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
} }
@ -407,6 +409,7 @@ export default {
margin-bottom: 0; margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.4); background-color: rgba(0, 0, 0, 0.4);
margin-top: 0; margin-top: 0;
border-radius: 4px;
} }
.role-name { .role-name {
@ -420,6 +423,7 @@ export default {
background: rgb(255, 255, 255); background: rgb(255, 255, 255);
transition: 0.2s; transition: 0.2s;
margin-top: 5px; margin-top: 5px;
border-radius: 4px;
} }
.color-picker { .color-picker {

View file

@ -192,8 +192,13 @@ export default {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.content { .content {
@ -232,16 +237,16 @@ export default {
align-self: center; align-self: center;
} }
.tab:hover { .tab:hover {
background: #072935; background: rgba(0, 0, 0, 0.4);
} }
.critical { .critical {
color: red; color: red;
} }
.tab.selected { .tab.selected {
background: #051f28; background: rgba(0, 0, 0, 0.4);
} }
.header { .header {
background: #05222d; background: rgba(0, 0, 0, 0.4);
display: flex; display: flex;
height: 50px; height: 50px;
flex-shrink: 0; flex-shrink: 0;

View file

@ -206,7 +206,8 @@ export default {
} }
.toggle { .toggle {
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
border-radius: 4px;
padding: 10px; padding: 10px;
margin-left: 10px; margin-left: 10px;
display: flex; display: flex;
@ -220,6 +221,7 @@ export default {
width: 20px; width: 20px;
height: 20px; height: 20px;
background: rgb(95, 95, 95); background: rgb(95, 95, 95);
border-radius: 4px;
margin-right: 5px; margin-right: 5px;
&.selected { &.selected {
background: rgb(34, 156, 255); background: rgb(34, 156, 255);
@ -233,7 +235,8 @@ export default {
} }
.input { .input {
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
border-radius: 4px;
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
align-self: flex-start; align-self: flex-start;
@ -245,7 +248,7 @@ export default {
margin-bottom: 5px; margin-bottom: 5px;
} }
textarea { textarea {
background: #032d38; background-color: rgba(0, 0, 0, 0.4);
resize: none; resize: none;
outline: none; outline: none;
margin-top: 2px; margin-top: 2px;
@ -262,7 +265,8 @@ export default {
.button { .button {
padding: 10px; padding: 10px;
background: #024554; border-radius: 4px;
background-color: rgba(0, 0, 0, 0.4);
-webkit-transition: background 0.3s; -webkit-transition: background 0.3s;
transition: 0.3s; transition: 0.3s;
-webkit-user-select: none; -webkit-user-select: none;
@ -276,7 +280,7 @@ export default {
} }
.button:hover { .button:hover {
background: #02303c; background-color: rgba(0, 0, 0, 0.6);
} }
.button.disabled { .button.disabled {
background: grey; background: grey;

View file

@ -133,13 +133,18 @@ export default {
color: white; color: white;
} }
.settings-box { .settings-box {
height: 600px; height: 630px;
display: flex; display: flex;
margin: auto; margin: auto;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.tabs { .tabs {
height: 100%; height: 100%;
@ -171,11 +176,11 @@ export default {
} }
.tab:hover { .tab:hover {
background: #072935; background: rgba(0, 0, 0, 0.4);
} }
.tab.selected { .tab.selected {
background: #051f28; background: rgba(0, 0, 0, 0.4);
} }
.tab.warn { .tab.warn {
@ -189,11 +194,11 @@ export default {
.title { .title {
display: flex; display: flex;
padding: 10px; padding: 10px;
font-size: 25px; font-size: 20px;
background: #05222d; background: rgba(0, 0, 0, 0.4);
} }
.title .material-icons { .title .material-icons {
font-size: 40px; font-size: 30px;
} }
.title div { .title div {
margin: auto; margin: auto;

View file

@ -61,9 +61,9 @@
class="avatar" class="avatar"
:url="update.avatar || avatar" :url="update.avatar || avatar"
:admin="user.admin" :admin="user.admin"
size="100px" size="70px"
emote-size="30px" emote-size="24px"
animation-padding="5px" animation-padding="4px"
/> />
<div class="button" @click="$refs.avatarBrowser.click()"> <div class="button" @click="$refs.avatarBrowser.click()">
Change Avatar Change Avatar
@ -208,7 +208,6 @@ export default {
.edit-profile { .edit-profile {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-top: 10px;
flex: 1; flex: 1;
overflow: hidden; overflow: hidden;
} }
@ -217,6 +216,7 @@ export default {
flex: 1; flex: 1;
overflow: auto; overflow: auto;
flex-shrink: 0; flex-shrink: 0;
padding-top: 20px;
} }
.change-avatar { .change-avatar {
@ -227,19 +227,22 @@ export default {
.change-avatar-container { .change-avatar-container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
width: 150px; width: 150px;
align-self: center; align-self: center;
padding: 20px; padding: 20px;
margin-top: 10px; margin-top: 10px;
margin-left: 29px;
border-radius: 4px;
.button { .button {
background: #033442; background: rgba(0, 0, 0, 0.2);
&:hover { &:hover {
background: #032b36; background: rgba(0, 0, 0, 0.3);
} }
} }
} }
.avatar { .avatar {
margin-top: 10px;
margin-bottom: 10px; margin-bottom: 10px;
align-self: center; align-self: center;
} }
@ -247,16 +250,17 @@ export default {
display: none; display: none;
} }
.button { .button {
background: #024554; background: rgba(0, 0, 0, 0.3);
padding: 10px; padding: 10px;
text-align: center; text-align: center;
display: inline-block; display: inline-block;
align-self: center; align-self: center;
cursor: pointer; cursor: pointer;
transition: 0.3s; transition: 0.3s;
border-radius: 4px;
} }
.button:hover { .button:hover {
background: #02303c; background: rgba(0, 0, 0, 0.4);
} }
.button.disabled { .button.disabled {
background: grey; background: grey;
@ -271,11 +275,16 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
margin-left: 30px; margin-left: 30px;
flex-shrink: 0; flex-shrink: 0;
border-radius: 4px;
.title {
font-size: 14px;
margin-left: 2px;
}
} }
.outer-input .user-tag .username { .outer-input .user-tag .username {
flex: 1; flex: 1;
@ -290,15 +299,22 @@ export default {
} }
.outer-input input { .outer-input input {
width: initial; width: initial;
border-radius: 4px;
} }
.save-button { .save-button {
z-index: 99999; z-index: 99999;
width: 100%; width: 120px;
align-self: initial; align-self: flex-end;
display: block; display: block;
padding: 10px 0px 10px 0px; padding: 10px 0px 10px 0px;
background: rgba(0, 0, 0, 0.4);
margin: 0; margin: 0;
margin-bottom: 20px;
margin-right: 20px;
&:hover {
background: rgba(0, 0, 0, 0.6);
}
} }
.errors { .errors {
@ -320,6 +336,7 @@ export default {
} }
.change-avatar-container { .change-avatar-container {
order: 1; order: 1;
margin-left: 0;
flex-shrink: 0; flex-shrink: 0;
} }
.change-avatar { .change-avatar {

View file

@ -161,10 +161,10 @@ input {
width: calc(100% - 30px); width: calc(100% - 30px);
} }
input:hover { input:hover {
background: rgba(26, 26, 26, 0.24); background: rgba(0, 0, 0, 0.2);
} }
input:focus { input:focus {
background: rgba(26, 26, 26, 0.527); background: rgba(0, 0, 0, 0.5);
} }
.delete-button { .delete-button {
@ -214,7 +214,7 @@ input:focus {
.emojis-list { .emojis-list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #00000024; background-color: rgba(0, 0, 0, 0.1);
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
height: 100%; height: 100%;
@ -234,7 +234,7 @@ input:focus {
flex-shrink: 0; flex-shrink: 0;
} }
.emoji:hover { .emoji:hover {
background: #052e3b; background: rgba(0, 0, 0, 0.2);
} }
.emoji-name { .emoji-name {
margin: auto; margin: auto;
@ -245,15 +245,16 @@ input:focus {
display: inline-block; display: inline-block;
width: inherit; width: inherit;
padding: 10px; padding: 10px;
background: #063443; background: rgba(6, 52, 67, 0.4);
margin-bottom: 10px; margin-bottom: 10px;
margin-left: 20px; margin-left: 20px;
user-select: none; user-select: none;
transition: 0.3s; transition: 0.3s;
cursor: pointer; cursor: pointer;
border-radius: 4px;
} }
.button:hover { .button:hover {
background: #052631; background: rgba(6, 52, 67, 0.6);
} }
.button .material-icons { .button .material-icons {
vertical-align: -6px; vertical-align: -6px;

View file

@ -170,7 +170,7 @@ export default {
.message-example { .message-example {
padding: 10px; padding: 10px;
background: linear-gradient(#0b4155, #01677e); background: rgba(0, 0, 0, 0.45);
} }
.title { .title {
font-size: 20px; font-size: 20px;
@ -190,7 +190,7 @@ export default {
} }
.options { .options {
background-color: #023643; background-color: rgba(0, 0, 0, 0.6);
padding-top: 5px; padding-top: 5px;
} }
</style> </style>

View file

@ -54,7 +54,7 @@ export default {
.tabs { .tabs {
z-index: 999999; z-index: 999999;
display: flex; display: flex;
background: #073444; background: rgba(0, 0, 0, 0.6);
justify-content: center; justify-content: center;
} }
.tabs .tab { .tabs .tab {

View file

@ -73,17 +73,17 @@ export default {
transition: 0.2s; transition: 0.2s;
&:hover { &:hover {
color: white; color: white;
background: rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.2);
} }
&.selected { &.selected {
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.4);
color: white; color: white;
} }
} }
} }
.context { .context {
display: flex; display: flex;
background: rgba(0, 0, 0, 0.6); background: rgba(0, 0, 0, 0.5);
.button { .button {
display: flex; display: flex;
margin: 5px; margin: 5px;

View file

@ -190,7 +190,7 @@ export default {
.bar { .bar {
display: flex; display: flex;
width: 100%; width: 100%;
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.3);
height: 40px; height: 40px;
flex-shrink: 0; flex-shrink: 0;
.button { .button {

View file

@ -162,7 +162,7 @@ export default {
}; };
</script> </script>
<style scoped> <style scoped lang="scss">
.notice { .notice {
color: rgb(216, 216, 216); color: rgb(216, 216, 216);
font-size: 15px; font-size: 15px;
@ -228,23 +228,29 @@ export default {
margin-bottom: 10px; margin-bottom: 10px;
} }
.survey-valid { .survey-valid {
color: green; color: #54ff54;
margin-bottom: 10px; margin-bottom: 10px;
} }
.survey .button { .survey .button {
color: white; color: white;
background: #024554; background: rgba(0, 0, 0, 0.4);
padding-top: 10px; padding-top: 10px;
padding-bottom: 10px; padding-bottom: 10px;
width: 100%; z-index: 99999;
width: 120px;
text-align: center; text-align: center;
transition: 0.3s; transition: 0.3s;
user-select: none; user-select: none;
cursor: pointer; cursor: pointer;
flex-shrink: 0; flex-shrink: 0;
margin: 0;
align-self: flex-end;
margin-bottom: 20px;
margin-right: 20px;
border-radius: 4px;
} }
.survey .button:hover { .survey .button:hover {
background: #02303c; background: rgba(0, 0, 0, 0.6);
} }
.title { .title {
@ -264,22 +270,28 @@ export default {
.input { .input {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #044050; background-color: rgba(0, 0, 0, 0.4);
border-radius: 4px;
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
margin-left: 30px; margin-left: 30px;
margin-right: 30px; margin-right: 30px;
padding-bottom: 0; padding-bottom: 0;
.input-title {
font-size: 14px;
margin-left: 2px;
}
} }
.input input { .input input {
width: initial; width: initial;
margin-top: 2px; margin-top: 2px;
background: #032d38; background-color: rgba(0, 0, 0, 0.4);
border-radius: 4px;
} }
textarea { textarea {
padding: 10px; padding: 10px;
resize: none; resize: none;
background: #032d38; background-color: rgba(0, 0, 0, 0.4);
border: none; border: none;
outline: none; outline: none;
color: white; color: white;
@ -287,6 +299,7 @@ textarea {
margin-bottom: 10px; margin-bottom: 10px;
margin-top: 2px; margin-top: 2px;
transition: 0.3s; transition: 0.3s;
border-radius: 4px;
} }
textarea:hover { textarea:hover {
background: rgba(0, 0, 0, 0.401); background: rgba(0, 0, 0, 0.401);

View file

@ -158,7 +158,7 @@ export default {
}, },
keyDownEvent(event) { keyDownEvent(event) {
const keyCode = event.keyCode; const keyCode = event.keyCode;
if (keyCode == 13) { if (keyCode == 13 && !event.shiftKey) {
return this.send(); return this.send();
} }
if (keyCode == 27) { if (keyCode == 27) {
@ -201,8 +201,13 @@ export default {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background-color: #01677e; background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
} }
.info { .info {
display: flex; display: flex;
@ -259,14 +264,17 @@ export default {
display: flex; display: flex;
align-content: center; align-content: center;
align-items: center; align-items: center;
background: #024554; background: rgba(0, 0, 0, 0.2);
border-radius: 4px;
padding: 5px; padding: 5px;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
transition: 0.3s; transition: 0.2s;
color: rgba(255, 255, 255, 0.8);
} }
.button:hover { .button:hover {
background: #02303c; background: rgba(0, 0, 0, 0.4);
color: white;
} }
.button .text { .button .text {
margin-left: 5px; margin-left: 5px;
@ -285,8 +293,9 @@ export default {
display: flex; display: flex;
} }
.chat-input { .chat-input {
font-family: "Roboto", sans-serif; font-family: "Montserrat", sans-serif;
background: #014655; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
color: white; color: white;
width: 100%; width: 100%;
height: 20px; height: 20px;

View file

@ -265,8 +265,13 @@ export default {
flex-direction: row; flex-direction: row;
position: relative; position: relative;
box-shadow: 0px 0px 20px 5px #151515bd; box-shadow: 0px 0px 20px 5px #151515bd;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(
to bottom,
rgba(0, 87, 153, 0.8) 0,
rgba(0, 118, 209, 0.8)
);
border-radius: 4px; border-radius: 4px;
backdrop-filter: blur(5px);
overflow: hidden; overflow: hidden;
} }
@ -301,7 +306,7 @@ export default {
align-content: center; align-content: center;
padding-bottom: 10px; padding-bottom: 10px;
flex-shrink: 0; flex-shrink: 0;
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.4);
padding-top: 30px; padding-top: 30px;
} }
@ -315,7 +320,7 @@ export default {
user-select: auto !important; user-select: auto !important;
} }
.tag { .tag {
color: #ccdadd; color: rgba(255, 255, 255, 0.7);
} }
.button { .button {
@ -424,12 +429,13 @@ export default {
flex-shrink: 0; flex-shrink: 0;
} }
.about-item .key { .about-item .key {
color: #b6dbe1; color: rgba(255, 255, 255, 0.7);
} }
.about-item .name { .about-item .name {
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
color: rgba(255, 255, 255, 0.9);
} }
.about-item div { .about-item div {
align-self: center; align-self: center;
@ -484,16 +490,16 @@ export default {
cursor: pointer; cursor: pointer;
height: 30px; height: 30px;
width: 30px; width: 30px;
border-radius: 50%;
flex-shrink: 0; flex-shrink: 0;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
align-content: center; align-content: center;
transition: 0.2s; transition: 0.2s;
user-select: none; user-select: none;
opacity: 0.7;
} }
.back-button:hover { .back-button:hover {
background: #0c484e; opacity: 1;
} }
@media (max-width: 432px) { @media (max-width: 432px) {
.box { .box {

View file

@ -170,6 +170,16 @@ export default {
.extendBanner { .extendBanner {
height: 130px; height: 130px;
background-color: rgb(32, 32, 32); background-color: rgb(32, 32, 32);
overflow: hidden;
.sub-banner {
align-items: flex-end;
padding-bottom: 10px;
background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
height: 70px;
}
.options-button {
margin-bottom: -7px;
}
} }
.banner-image { .banner-image {
position: absolute; position: absolute;

View file

@ -3,10 +3,14 @@
class="channel" class="channel"
:class="{ selected: selectedChannelID === channelData.channelID }" :class="{ selected: selectedChannelID === channelData.channelID }"
> >
<i class="material-icons">storage</i> <i class="material-icons">arrow_forward_ios</i>
<div class="channel-name">{{ channelData.name }}</div> <div class="channel-name">{{ channelData.name }}</div>
<div class="notification" v-if="hasNotifications"> <div
{{ hasNotifications.count }} class="notification"
v-if="hasNotifications"
:title="hasNotifications.count"
>
{{ hasNotifications.count > 99 ? "99+" : hasNotifications.count }}
</div> </div>
</div> </div>
</template> </template>
@ -45,23 +49,30 @@ export default {
position: relative; position: relative;
display: flex; display: flex;
align-items: center; align-items: center;
padding: 5px; padding: 10px;
transition: background 0.3s; transition: background 0.2s;
font-size: 14px; font-size: 14px;
cursor: pointer; cursor: pointer;
color: white; color: rgba(255, 255, 255, 0.8);
user-select: none; user-select: none;
overflow: hidden; overflow: hidden;
padding-right: 10px; padding-right: 10px;
padding-left: 10px; padding-left: 10px;
margin: 5px; margin: 2px;
margin-left: 10px;
margin-right: 10px;
border-radius: 4px; border-radius: 4px;
} }
.material-icons {
font-size: 11px;
}
.channel:hover { .channel:hover {
background: #053c4c; background: #00477d;
color: white;
} }
.channel.selected { .channel.selected {
background: #053240; background: #003660;
color: white;
} }
.channel-name { .channel-name {
@ -78,12 +89,13 @@ export default {
text-align: center; text-align: center;
justify-content: center; justify-content: center;
background: #ee3e34; background: #ee3e34;
height: 34px; height: 23px;
right: 0; width: 23px;
top: 0; border-radius: 50%;
right: 10px;
top: 8px;
bottom: 0; bottom: 0;
min-width: 40px; font-size: 12px;
max-width: 70px; font-weight: bold;
border-radius: 1px;
} }
</style> </style>

View file

@ -69,7 +69,7 @@ export default {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
z-index: 2; z-index: 2;
background: rgba(19, 107, 139, 0.9); background: linear-gradient(to bottom, #00477e 0, #016dc0);
} }
.darken::after { .darken::after {
content: ""; content: "";

View file

@ -186,19 +186,22 @@ export default {
border-radius: 4px; border-radius: 4px;
cursor: pointer; cursor: pointer;
transition: 0.3s; transition: 0.3s;
color: rgba(255, 255, 255, 0.8);
&:hover { &:hover {
background: #053c4c; background: rgba(0, 0, 0, 0.2);
color: white;
} }
&.selected { &.selected {
background: #053240; color: white;
background: rgba(0, 0, 0, 0.4);
} }
} }
.item:nth-child(2)::before { .item:nth-child(2)::before {
content: "NEW"; content: "NEW";
font-size: 14px; font-size: 9px;
background: rgb(255, 55, 55); background: rgb(255, 55, 55);
border-radius: 2px; border-radius: 2px;
padding: 2px; padding: 4px;
position: absolute; position: absolute;
right: 10px; right: 10px;
} }
@ -224,18 +227,18 @@ export default {
&::after { &::after {
content: "BETA"; content: "BETA";
position: absolute; position: absolute;
background: #ff3333; background: #f33;
border-radius: 5px; border-radius: 2px;
font-size: 9px; font-size: 10px;
padding: 2px; padding: 2px;
bottom: 20px; bottom: 22px;
z-index: 999; z-index: 999;
} }
} }
.details { .details {
align-self: center; align-self: center;
.title { .title {
font-size: 20px; font-size: 18px;
margin-bottom: 5px; margin-bottom: 5px;
position: relative; position: relative;
} }
@ -249,8 +252,7 @@ export default {
.card { .card {
background: black; background: black;
height: 180px; border-radius: 4px;
border-radius: 5px;
margin: 5px; margin: 5px;
padding: 10px; padding: 10px;
display: flex; display: flex;
@ -267,10 +269,12 @@ export default {
padding: 5px; padding: 5px;
font-size: 17px; font-size: 17px;
margin-top: 15px; margin-top: 15px;
margin-bottom: 10px;
flex-shrink: 0; flex-shrink: 0;
cursor: pointer; cursor: pointer;
transition: 0.3s; transition: 0.3s;
color: rgba(255, 255, 255, 0.924); color: rgba(255, 255, 255, 0.924);
border-radius: 4px;
&:hover { &:hover {
background-color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.3);
} }
@ -302,6 +306,7 @@ export default {
.heart { .heart {
font-size: 60px; font-size: 60px;
margin-bottom: 10px; margin-bottom: 10px;
margin-top: 10px;
} }
} }
} }
@ -320,7 +325,7 @@ export default {
.right-panel { .right-panel {
.header { .header {
background: #063443; background: rgba(0, 0, 0, 0.4);
padding-left: 10px; padding-left: 10px;
height: 54px; height: 54px;
display: flex; display: flex;
@ -362,8 +367,8 @@ export default {
.left-panel { .left-panel {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
z-index: 2; z-index: 2222;
background: rgba(19, 107, 139, 0.9); background: linear-gradient(to bottom, #00477e 0, #016dc0);
height: 100%; height: 100%;
} }
.darken::after { .darken::after {

View file

@ -83,7 +83,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.search-header { .search-header {
display: flex; display: flex;
background: #073847; background: rgba(0, 0, 0, 0.55);
width: 100%; width: 100%;
height: 100px; height: 100px;
flex-shrink: 0; flex-shrink: 0;

View file

@ -89,8 +89,7 @@ export default {
position: relative; position: relative;
width: 250px; width: 250px;
height: 300px; height: 300px;
background: #024253; background: rgba(0, 0, 0, 0.2);
opacity: 0.9;
margin: 5px; margin: 5px;
border-radius: 4px; border-radius: 4px;
flex-shrink: 0; flex-shrink: 0;
@ -99,9 +98,6 @@ export default {
flex-shrink: 0; flex-shrink: 0;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
&:hover {
opacity: 1;
}
.top { .top {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -156,7 +152,14 @@ export default {
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.material-icons { .material-icons {
color: #66e0ff; color: #ffffff;
width: 12px;
height: 12px;
background-color: #5dcce8;
font-size: 13px;
border-radius: 50%;
padding: 4px;
margin-top: 3px;
margin-left: 5px; margin-left: 5px;
} }
} }
@ -164,7 +167,7 @@ export default {
.bottom { .bottom {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: #04333f; background: rgba(0, 0, 0, 0.3);
flex: 1; flex: 1;
height: 100%; height: 100%;
flex-shrink: 0; flex-shrink: 0;
@ -199,7 +202,7 @@ export default {
border-radius: 4px; border-radius: 4px;
margin-right: 10px; margin-right: 10px;
flex: 1; flex: 1;
background: #022730; background: rgba(0, 0, 0, 0.3);
.material-icons { .material-icons {
margin-right: 5px; margin-right: 5px;
} }
@ -209,8 +212,8 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 100%; width: 100%;
height: 40px; height: 36px;
border-radius: 4px; border-radius: 2px;
background: rgba(0, 179, 219, 0.8); background: rgba(0, 179, 219, 0.8);
transition: 0.2s; transition: 0.2s;
margin-right: 10px; margin-right: 10px;

View file

@ -97,8 +97,7 @@ export default {
position: relative; position: relative;
width: 250px; width: 250px;
height: 350px; height: 350px;
background: #024253; background: rgba(0, 0, 0, 0.2);
opacity: 0.9;
margin: 5px; margin: 5px;
border-radius: 4px; border-radius: 4px;
flex-shrink: 0; flex-shrink: 0;
@ -107,9 +106,6 @@ export default {
flex-shrink: 0; flex-shrink: 0;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
&:hover {
opacity: 1;
}
.top { .top {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -142,7 +138,7 @@ export default {
.bottom { .bottom {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: #04333f; background: rgba(0, 0, 0, 0.3);
flex: 1; flex: 1;
height: 100%; height: 100%;
overflow: auto; overflow: auto;
@ -216,8 +212,8 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 100%; width: 100%;
height: 40px; height: 36px;
border-radius: 4px; border-radius: 2px;
background: rgba(0, 179, 219, 0.8); background: rgba(0, 179, 219, 0.8);
transition: 0.2s; transition: 0.2s;
margin-right: 10px; margin-right: 10px;

View file

@ -4,12 +4,7 @@
<div class="changelog"> <div class="changelog">
<div class="change-log"> <div class="change-log">
<div v-for="(change, index) in changelog" :key="index" class="change"> <div v-for="(change, index) in changelog" :key="index" class="change">
<div <div class="heading" :class="{ 'latest-color': index === 0 }">
class="heading"
:style="
change.headColor ? `background-color: ${change.headColor}` : ``
"
>
<div class="date">{{ change.date }}</div> <div class="date">{{ change.date }}</div>
<div class="changes-title">{{ change.title }}</div> <div class="changes-title">{{ change.title }}</div>
</div> </div>
@ -111,9 +106,12 @@ export default {
} }
.heading { .heading {
padding: 10px; padding: 10px;
background: #042f3a; background: rgba(0, 0, 0, 0.4);
margin-bottom: 10px; margin-bottom: 10px;
} }
.latest-color {
background: rgb(19, 121, 255);
}
.information { .information {
overflow-wrap: break-word; overflow-wrap: break-word;
margin: 10px; margin: 10px;
@ -122,11 +120,12 @@ export default {
background: rgba(38, 139, 255, 0.87); background: rgba(38, 139, 255, 0.87);
} }
.change-log { .change-log {
background: #054151; background: rgba(0, 0, 0, 0.4);
overflow-y: auto; overflow-y: auto;
max-width: 700px; max-width: 700px;
width: 100%; width: 100%;
margin: auto; margin: auto;
border-radius: 4px;
} }
.changelog { .changelog {
display: flex; display: flex;
@ -153,7 +152,7 @@ export default {
margin-bottom: 10px; margin-bottom: 10px;
} }
.see-all-button { .see-all-button {
background: #172a2c; background: rgba(0, 0, 0, 0.4);
display: flex; display: flex;
flex-shrink: 0; flex-shrink: 0;
justify-content: center; justify-content: center;
@ -165,6 +164,6 @@ export default {
transition: 0.2s; transition: 0.2s;
} }
.see-all-button:hover { .see-all-button:hover {
background: #0b1415; background: rgba(0, 0, 0, 0.6);
} }
</style> </style>

View file

@ -5,7 +5,7 @@
> >
<transition name="slide-left"> <transition name="slide-left">
<server-list <server-list
v-if="($mq === 'mobile' && showLeftPanel) || $mq !== 'mobile'" v-show="($mq === 'mobile' && showLeftPanel) || $mq !== 'mobile'"
v-click-outside="hideLeftPanel" v-click-outside="hideLeftPanel"
class="left-panel" class="left-panel"
/> />
@ -110,7 +110,7 @@ export default {
right: 0; right: 0;
bottom: 0; bottom: 0;
z-index: 2; z-index: 2;
background: rgba(19, 107, 139, 0.9); background: linear-gradient(to bottom, #00477e 0, #016dc0);
} }
} }
@ -119,7 +119,7 @@ export default {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
z-index: 2; z-index: 2;
background: rgba(19, 107, 139, 0.9); background: linear-gradient(to bottom, #00477e 0, #016dc0);
} }
.darken::after { .darken::after {
content: ""; content: "";

View file

@ -78,15 +78,22 @@ export default {
transition: 0.3s; transition: 0.3s;
flex-shrink: 0; flex-shrink: 0;
flex: 1; flex: 1;
padding: 3px;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(5px);
align-content: center;
align-content: center;
height: 20px;
} }
.animation { .animation {
height: 20px; height: 20px;
width: 20px; width: 20px;
display: flex; display: flex;
align-self: center;
} }
.text { .text {
margin: auto; margin: auto;
margin-left: 5px; margin-left: 5px;
font-size: 13px; font-size: 12px;
} }
</style> </style>

View file

@ -164,10 +164,10 @@ export default {
} }
.friend:hover { .friend:hover {
background: #053c4c; background-color: rgba(0, 0, 0, 0.2);
} }
.friend.selected { .friend.selected {
background: #053240; background-color: rgba(0, 0, 0, 0.4);
} }
.profile-picture { .profile-picture {
height: 30px; height: 30px;

View file

@ -1,8 +1,10 @@
<template> <template>
<div class="friends"> <div class="friends">
<div class="tab" @click="expanded = !expanded"> <Tab
<Tab :expanded="expanded" tabname="Offline" /> @click.native="expanded = !expanded"
</div> :expanded="expanded"
tabname="Offline"
/>
<transition name="list"> <transition name="list">
<div v-if="expanded" class="list"> <div v-if="expanded" class="list">
<FriendsTemplate <FriendsTemplate
@ -71,6 +73,6 @@ export default {
border-radius: 4px; border-radius: 4px;
} }
.tab:hover { .tab:hover {
background: #053240; background-color: rgba(0, 0, 0, 0.2);
} }
</style> </style>

View file

@ -1,8 +1,10 @@
<template> <template>
<div class="friends"> <div class="friends">
<div class="tab" @click="expanded = !expanded"> <Tab
<Tab :expanded="expanded" tabname="Online" /> @click.native="expanded = !expanded"
</div> :expanded="expanded"
tabname="Online"
/>
<transition name="list"> <transition name="list">
<div v-if="expanded" class="list"> <div v-if="expanded" class="list">
<FriendsTemplate <FriendsTemplate
@ -88,6 +90,6 @@ export default {
border-radius: 4px; border-radius: 4px;
} }
.tab:hover { .tab:hover {
background: #053240; background-color: rgba(0, 0, 0, 0.2);
} }
</style> </style>

View file

@ -1,8 +1,10 @@
<template> <template>
<div class="pending-friends" v-if="friends && friends.length"> <div class="pending-friends" v-if="friends && friends.length">
<div class="tab" @click="expanded = !expanded"> <Tab
<Tab :expanded="expanded" tabname="Pending requests" /> @click.native="expanded = !expanded"
</div> :expanded="expanded"
tabname="Pending requests"
/>
<transition name="list"> <transition name="list">
<div v-if="expanded" class="list"> <div v-if="expanded" class="list">
<PendingTemplate <PendingTemplate
@ -62,8 +64,10 @@ export default {
} }
.tab { .tab {
transition: 0.3s; transition: 0.3s;
margin: 4px;
border-radius: 4px;
} }
.tab:hover { .tab:hover {
background-color: rgba(0, 0, 0, 0.123); background-color: rgba(0, 0, 0, 0.2);
} }
</style> </style>

View file

@ -107,7 +107,8 @@ export default {
} }
.button { .button {
background-color: rgba(65, 65, 65, 0.438); background-color: rgba(0, 0, 0, 0.2);
border-radius: 4px;
width: 30px; width: 30px;
height: 30px; height: 30px;
margin: 5px; margin: 5px;

View file

@ -33,11 +33,12 @@ export default {
} }
.upload { .upload {
color: white; color: white;
background: #26778a; background: rgba(255, 255, 255, 0.2);
margin: 10px; margin: 10px;
margin-left: 10px; margin-left: 10px;
display: flex; display: flex;
padding: 10px; padding: 10px;
border-radius: 4px;
} }
.icon { .icon {
display: flex; display: flex;

View file

@ -60,14 +60,15 @@ export default {
height: 0; height: 0;
border-left: 10px solid transparent; border-left: 10px solid transparent;
border-right: 10px solid transparent; border-right: 10px solid transparent;
border-bottom: 15px solid #0f272a; border-bottom: 15px solid rgba(0, 0, 0, 0.7);
} }
.inner { .inner {
right: 0; right: 0;
top: 15px; top: 15px;
position: absolute; position: absolute;
display: flex; display: flex;
background: #0f272a; background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
border-radius: 5px; border-radius: 5px;
width: 300px; width: 300px;
height: 60px; height: 60px;

View file

@ -1,10 +1,19 @@
const config = [ const config = [
{
version: 9.5,
title: "New design and font!",
shortTitle: "",
date: "08/02/2019",
new: [
"New color scheme for Nertivia!",
"New font called 'Montserrat'. More font options are coming soon!"
]
},
{ {
version: 9.3, version: 9.3,
title: "Saved Notes and bug fixes", title: "Saved Notes and bug fixes",
shortTitle: "", shortTitle: "",
date: "25/01/2019", date: "25/01/2019",
headColor: "#007792",
new: ["You can now save your own messages in a separate log."], new: ["You can now save your own messages in a separate log."],
fix: ["Fixed a bug where some role colors would not show correctly."] fix: ["Fixed a bug where some role colors would not show correctly."]
}, },

View file

@ -65,7 +65,7 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
color: white; color: white;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.app-content { .app-content {
display: flex; display: flex;
@ -94,7 +94,8 @@ body {
align-items: center; align-items: center;
z-index: 9999; z-index: 9999;
padding-bottom: 20px; padding-bottom: 20px;
background: #044050; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
} }
.box .title { .box .title {
text-align: center; text-align: center;

View file

@ -1,7 +1,7 @@
<template> <template>
<div id="app" ref="app" :class="{ desktop: isElectron }"> <div id="app" ref="app" :class="{ desktop: isElectron }">
<vue-headful :title="title" description="Nertivia Chat Client" /> <vue-headful :title="title" description="Nertivia Chat Client" />
<div class="background-image"></div> <div class="background-color"></div>
<transition name="fade-between-two" appear> <transition name="fade-between-two" appear>
<ConnectingScreen v-if="!loggedIn" /> <ConnectingScreen v-if="!loggedIn" />
<div class="box" v-if="loggedIn"> <div class="box" v-if="loggedIn">
@ -370,15 +370,15 @@ export default {
<style> <style>
textarea { textarea {
font-family: "Roboto", sans-serif; font-family: "Montserrat", sans-serif;
} }
.background-image { .background-color {
position: fixed; position: fixed;
z-index: -1; z-index: -1;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.panel-layout { .panel-layout {

View file

@ -96,7 +96,7 @@ body {
color: white; color: white;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.app-content { .app-content {
display: flex; display: flex;
@ -135,7 +135,8 @@ body {
justify-content: center; justify-content: center;
z-index: 9999; z-index: 9999;
padding: 20px; padding: 20px;
background: #044050; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
} }
.loading { .loading {

View file

@ -42,10 +42,14 @@
The best chat client that won't restrict you from important and fun The best chat client that won't restrict you from important and fun
features. features.
</div> </div>
<img class="graphic" src="@/assets/graphics/HomeGraphics.webp" /> <img class="graphic" src="@/assets/graphics/Graphic.webp" />
<div class="buttons"> <div class="buttons">
<div class="button" @click="openApp">Open In Browser</div> <div class="button" @click="openApp">
<div class="material-icons">open_in_browser</div>
Open In Browser
</div>
<div class="button download" @click="showDownloadsPopout = true"> <div class="button download" @click="showDownloadsPopout = true">
<div class="material-icons">vertical_align_bottom</div>
Download App Download App
</div> </div>
</div> </div>
@ -236,7 +240,7 @@ body {
flex-shrink: 0; flex-shrink: 0;
border: 10px; border: 10px;
position: relative; position: relative;
background: #072834; background: rgba(0, 0, 0, 0.2);
} }
.logo { .logo {
background: url("../assets/logo.png"); background: url("../assets/logo.png");
@ -262,7 +266,7 @@ body {
width: 100%; width: 100%;
height: 100%; height: 100%;
transition: 0.5s; transition: 0.5s;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.content { .content {
position: fixed; position: fixed;
@ -309,26 +313,24 @@ body {
} }
.button { .button {
padding: 15px; padding: 15px;
background: rgba(24, 132, 255, 0.733); background: rgba(0, 0, 0, 0.2);
color: white; color: white;
user-select: none; user-select: none;
transition: 0.3s; transition: 0.3s;
margin: 10px; margin: 10px;
cursor: pointer; cursor: pointer;
border-radius: 4px; border-radius: 4px;
display: flex;
align-items: center;
}
.button .material-icons {
margin-right: 5px;
} }
.button:hover { .button:hover {
background: rgb(24, 132, 255); background: rgba(0, 0, 0, 0.4);
} }
.button.download {
background: rgba(0, 223, 67, 0.733);
}
.button.download:hover {
background: rgba(0, 223, 67, 0.904);
}
.features-list { .features-list {
margin-top: 20px; margin-top: 20px;
@ -338,7 +340,7 @@ body {
justify-content: center; justify-content: center;
} }
.feature { .feature {
background: #024352; background: rgba(0, 0, 0, 0.4);
color: white; color: white;
margin: 10px; margin: 10px;
padding: 2px; padding: 2px;
@ -368,7 +370,7 @@ body {
} }
.link { .link {
padding: 10px; padding: 10px;
background: #25424d; background: rgba(0, 0, 0, 0.2);
user-select: none; user-select: none;
margin-left: 5px; margin-left: 5px;
transition: 0.3s; transition: 0.3s;
@ -376,7 +378,7 @@ body {
border-radius: 4px; border-radius: 4px;
} }
.link:hover { .link:hover {
background: rgba(255, 255, 255, 0.26); background: rgba(0, 0, 0, 0.4);
} }
.warn { .warn {
color: red; color: red;
@ -397,12 +399,14 @@ body {
} }
} }
@media (max-width: 334px) { @media (max-width: 424px) {
.buttons { .buttons {
flex-direction: column; flex-direction: column;
} }
.buttons .button { .buttons .button {
text-align: center; text-align: center;
align-content: center;
justify-content: center;
} }
} }

View file

@ -139,7 +139,7 @@ body {
flex-direction: column; flex-direction: column;
color: white; color: white;
height: 100%; height: 100%;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.app-content { .app-content {
display: flex; display: flex;
@ -168,7 +168,8 @@ body {
justify-content: center; justify-content: center;
z-index: 9999; z-index: 9999;
padding-bottom: 20px; padding-bottom: 20px;
background: #044050; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
} }
.server { .server {
display: flex; display: flex;
@ -180,10 +181,11 @@ body {
} }
.invalid { .invalid {
margin-top: 15px; margin-top: 15px;
align-items: center;
align-content: center;
text-align: center;
} }
.red {
background: #9e1a1c;
}
.avatar { .avatar {
align-self: center; align-self: center;
margin-bottom: 10px; margin-bottom: 10px;
@ -208,6 +210,7 @@ body {
flex-shrink: 0; flex-shrink: 0;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
border-radius: 4px;
} }
.button:hover { .button:hover {
background: rgb(25, 151, 255); background: rgb(25, 151, 255);

View file

@ -218,7 +218,7 @@ body {
flex-direction: column; flex-direction: column;
color: white; color: white;
height: 100%; height: 100%;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.app-content { .app-content {
display: flex; display: flex;
@ -246,7 +246,7 @@ body {
align-items: center; align-items: center;
z-index: 9999; z-index: 9999;
padding-bottom: 20px; padding-bottom: 20px;
background: #043b4a; background: rgba(0, 0, 0, 0.3);
border-radius: 4px; border-radius: 4px;
} }
.box .title { .box .title {
@ -279,7 +279,8 @@ form {
margin: 10px; margin: 10px;
width: 80%; width: 80%;
align-self: center; align-self: center;
background: #032b35; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
padding: 10px; padding: 10px;
} }
.input-text { .input-text {
@ -290,7 +291,8 @@ input {
outline: none; outline: none;
padding: 10px; padding: 10px;
border: none; border: none;
background: #021b21; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
color: white; color: white;
} }
.buttons { .buttons {

View file

@ -226,7 +226,7 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
color: white; color: white;
background: linear-gradient(#0b4155, #01677e); background: linear-gradient(to bottom, #005799 0, #0076d1);
} }
.app-content { .app-content {
display: flex; display: flex;
@ -254,7 +254,7 @@ body {
align-items: center; align-items: center;
z-index: 9999; z-index: 9999;
padding-bottom: 20px; padding-bottom: 20px;
background: #043b4a; background: rgba(0, 0, 0, 0.3);
border-radius: 4px; border-radius: 4px;
} }
.box .title { .box .title {
@ -287,7 +287,8 @@ form {
margin: 10px; margin: 10px;
width: 80%; width: 80%;
align-self: center; align-self: center;
background: #032b35; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
padding: 10px; padding: 10px;
} }
.input-text { .input-text {
@ -299,7 +300,8 @@ input {
padding: 10px; padding: 10px;
border: none; border: none;
background: none; background: none;
background: #021b21; background: rgba(0, 0, 0, 0.4);
border-radius: 4px;
color: white; color: white;
} }
.buttons { .buttons {