Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
DrW3RK committed Nov 2, 2024
1 parent 184b412 commit 3db6903
Show file tree
Hide file tree
Showing 4 changed files with 1,113 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# will have compiled files and executables
debug/
target/
dist/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Expand Down
97 changes: 97 additions & 0 deletions dist/index-5aabc774da9d6c54.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
* {
font-family: Arial, Helvetica, sans-serif;
color: #242a35;
}

html {
background-color: #242a35;
display: flex;
justify-content: center;
height: 100%;
}

h1 {
font-weight: bolder;
color: #242a35;
}

body {
width: 800px;
max-width: 100%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
min-height: 100%;
margin: 0px;
padding: 16px;
background-color: #ffffff;
}

p {
white-space: pre-wrap;
border-radius: 8px;
padding: 8px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
background-color: #242a35;
color: white;
}

button {
font-size: large;
padding: 8px 16px;
font-weight: bold;
background-color: #242a35;
border: none;
border-radius: 8px;
color: white;
cursor: pointer;
display: block;
margin-top: 8px;
}

a {
text-decoration: none;
}

button:hover {
background-color: #ff2670;
}

input {
font-size: large;
background-color: white;
color: #242a35;
border-radius: 8px;
padding: 8px 16px;
}

.mb {
margin-bottom: 12px;
}

small {
color: #24cc85;
}

.error {
color: red;
background: black;
padding: 8px;
border-radius: 8px;
}

@keyframes loading {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(20px);
opacity: 0.5;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
.loading {
animation: loading 0.7s infinite;
}
Loading

0 comments on commit 3db6903

Please sign in to comment.