Wallos v0.9

This commit is contained in:
ellite
2023-10-05 22:39:37 +02:00
commit 63ce5b099a
166 changed files with 6337 additions and 0 deletions
+109
View File
@@ -0,0 +1,109 @@
body {
background-color: #303030;
color: #E0E0E0;
}
body > header {
background-color: #222;
}
header .logo .logo-image {
background-image: url("../images/wallossolidwhite.png");
}
.subscription,
.subscription-form,
.account-section,
.avatar-select,
.logo-search,
.dropdown-content,
.sort-options,
.statistic {
background-color: #222;
border: 1px solid #333;
box-shadow: 0 2px 5px rgba(120, 120, 120, 0.1);
}
.dropbtn {
color: #E0E0E0E0;
}
.dropdown-content a {
color: #E0E0E0;
}
.dropdown-content a:hover {
background-color: #333333;
}
.subscription-form h3 {
color: #FFF;
border-bottom: 1px solid #EEE;
}
.close-form {
color: #EEE;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
select {
background-color: #555;
border: 1px solid #666;
color: #E0E0E0;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="date"]::placeholder,
input[type="number"]::placeholder,
select::placeholder {
color: #BBB;
}
input[type="button"].secondary-button {
background-color: #222;
}
input[type="button"].secondary-button:hover {
background-color: #111;
}
.toast {
border: 1px solid #333;
background: #222;
box-shadow: 0 6px 20px -5px rgba(255, 255, 255, 0.1);
}
.toast .close-error {
color: #EEE;
}
.toast-content .message .text.text-1 {
color: #BBB;
}
.toast-content .message .text {
color: #999;
}
.logo-preview:after {
color: #007bff;
}
.sort-options > ul > li {
border-bottom: 1px solid #555;
color: #DDD;
}
.sort-options > ul > li:hover {
background-color: #444;
}
.payment-name {
color: #FFF;
}
+34
View File
@@ -0,0 +1,34 @@
body {
background-color: #303030;
color: #E0E0E0;
}
.container {
background-color: #222;
border: 1px solid #333;
box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
.container {
background-color: transparent;
border: none;
box-shadow: none;
}
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="checkbox"],
select {
background-color: #555;
border: 1px solid #666;
color: #E0E0E0;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
color: #BBB;
}
+119
View File
@@ -0,0 +1,119 @@
body, html {
font-family: Barlow, 'Helvetica Neue', Helvetica, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
font-size: 14px;
height: 100%;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.container {
width: 400px;
margin: auto;
max-width: 100%;
padding: 20px;
background-color: #fff;
border-radius: 5px;
border: 1px solid #eee;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
}
@media (max-width: 768px) {
.container {
background-color: transparent;
border: none;
box-shadow: none;
}
}
.container > header {
text-align: center;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
}
.form-group-inline {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
.form-group-inline label {
font-weight: 300;
font-size: 13px;
margin-bottom: 0px;
margin-left: 8px;
cursor: pointer;
}
input {
box-sizing: border-box;
}
input[type="text"],
input[type="email"],
input[type="password"],
select {
width: 100%;
padding: 15px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
}
input[type="submit"] {
width: 100%;
padding: 15px;
font-size: 16px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
input[type="checkbox"] {
cursor: pointer;
width: 25px;
height: 25px;
padding: 0px;
margin: 0px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
display: grid;
place-content: center;
}
.error {
display: block;
color: red;
margin-bottom: 20px;
}
+1063
View File
File diff suppressed because it is too large Load Diff