Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacEagle17 committed Sep 15, 2024
1 parent 72d66bf commit 315f71c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 10 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ html, body {
/* HERO
================================================== */
.hero {
background: url(../img/Screenshots/mainBackground.webp) no-repeat top / cover;
background: url(../img/Screenshots/2024-06-12_13.13.54.png) no-repeat top / cover;
background-position: center -200px;
height: 100%;
width: 100%;
Expand Down Expand Up @@ -1422,12 +1422,21 @@ table, th, td {



.container-box {
position: relative;
display: inline-block;
}

.tilted-box {
width: 300px; /* Set the width of the box */
height: 200px; /* Set the height of the box */
border: 5px solid #000; /* Initial border color */
border-radius: 25px; /* Rounds the corners */
background-color: transparent; /* Always transparent */
background-image: url(../img/other/euphoria_patches\ -\ Copy.png) no-repeat top / cover; /* PNG with transparency */
background-size: contain; /* Ensures the image fits inside the box */
background-position: center; /* Centers the image */
background-repeat: no-repeat; /* Avoids tiling the image */
transform: rotate(10deg); /* Tilt the box */
transition: border-color 0.3s ease; /* Smooth transition for the border color on hover */
}
Expand Down
Binary file added assets/img/Screenshots/2024-06-12_13.13.54.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/other/euphoria_patches - Copy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@

<div id="hero" class="hero subpage-hero">
<div class="hero-content">
<div class="hero-text">
<!--<div class="hero-text">
<a href="/download" class="btn btn-border">Download</a>
</div><!-- /.hero-text -->
<div class="tilted-box"></div>
</div><!~~ /.hero-text ~~>-->
<div class="container-box">
<div class="tilted-box"></div>
</div>
</div><!-- /.hero-content -->

</div><!-- /.hero -->
Expand Down

0 comments on commit 315f71c

Please sign in to comment.