Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rkenneybrew committed Jan 7, 2024
1 parent 5802cdb commit 58f7e64
Show file tree
Hide file tree
Showing 11 changed files with 178 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.gitattributes

_export/
assets/
#assets/

Users/
node_modules/
Expand Down
1 change: 1 addition & 0 deletions assets/bootstrap/css/bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions assets/bootstrap/js/bootstrap.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions assets/css/ComforterBrush-Regular.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@font-face {
font-family: 'ComforterBrush-Regular';
src: url(../../assets/fonts/ComforterBrush-Regular.woff) format('woff'),
url(../../assets/fonts/ComforterBrush-Regular.woff) format('woff');
font-weight: 400;
font-style: normal;
font-display: auto;
}
159 changes: 159 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #000;
opacity: 1;
}

.overlay-mask-container {
position: relative;
}

.overlay-mask {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.5);
}

.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}

.center-description {
text-align: center;
}

.video-container {
width: 426px;
height: 240px;
box-sizing: border-box;
overflow: hidden;
border: outset;
border-radius: 2.5px;
border-color: #f9f9f9;
/*position: fixed;*/
justify-content: center;
text-align: center;
padding: 10px;
}

.video-container > iframe {
width: 100%;
height: 100%;
z-index: -1;
}

header {
position: absolute;
text-align: center;
top: 24%;
left: 50%;
transform: translate(-50%,-50%);
}

div > .text-container {
position: absolute;
}

div > .text-container2 {
padding: 2px;
}

h1 {
box-sizing: border-box;
border: outset;
border-radius: 1.5px;
padding: 10px;
text-align: center;
color: #f9f9f9;
}

hr {
width: 150px;
padding: .5px;
}

#imagePreview {
text-align: center;
margin: 50px;
}

#imageURL {
width: 70%;
padding: 5px;
}

button {
padding: 5px 10px;
cursor: pointer;
}

#previewLink {
display: block;
margin-top: 10px;
}

p5 {
justify-content: center;
text-align: center;
color: #f9f9f9;
}

trademark {
font-family: ComforterBrush-Regular;
justify-content: center;
text-align: center;
color: #8b0000;
}

a {
color: #f9f9f9;
}

a:hover {
color: #8b0000;
}

.visualizer-container {
position: relative;
}

canvas {
display: block;
background-color: #333;
border-radius: 8px;
}

#watermark-container {
position: fixed;
bottom: 0;
right: 0;
}

#watermark-image {
padding: 10px;
width: 100px;
height: auto;
opacity: .5;
}

footer {
position: fixed;
bottom: 0;
padding: 10px;
}

h6 {
position: relative;
text-align: center;
color: #f9f9f9;
}

1 change: 1 addition & 0 deletions assets/css/styles.min.css

Large diffs are not rendered by default.

Binary file added assets/fonts/ComforterBrush-Regular.woff
Binary file not shown.
Binary file added assets/img/Trademark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/Trademark2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/Trademark2.webp
Binary file not shown.
2 changes: 2 additions & 0 deletions assets/js/jquery.min.js

Large diffs are not rendered by default.

0 comments on commit 58f7e64

Please sign in to comment.