Skip to content

Commit

Permalink
added a lot of unnecessary things
Browse files Browse the repository at this point in the history
  • Loading branch information
timtantantan committed Dec 8, 2024
1 parent cf2f24f commit c371a94
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 3 deletions.
Binary file added properties/fonts/NaNSerfAText-Black.ttf
Binary file not shown.
Binary file added properties/fonts/NaNSerfAText-Light.ttf
Binary file not shown.
Binary file added properties/fonts/NaNSerfAText-Medium.ttf
Binary file not shown.
Binary file added properties/pic/2.jpg
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 properties/pic/3.jpg
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 properties/pic/4.jpg
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 properties/pic/5.jpg
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 properties/pic/6.jpg
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 properties/pic/7.jpg
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 properties/pic/8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 51 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
src: url(properties/fonts/NaNWeiss-ExtraBlack.ttf) format('truetype');
}

@font-face {
font-family: "NaNSerfAText-Medium";
src: url(properties/fonts/NaNSerfAText-Medium.ttf) format('truetype');
}



body {
Expand Down Expand Up @@ -53,18 +58,61 @@ body {
display: block; /* full width */
margin-bottom: 15px;
text-decoration: none;
color:#000;
font-size: 2.5rem;
font-family: "NaNSuccessText-Black";
font-weight: 400;
transition: transform 0.5s ease;
}

.sidebar a:hover {
font-weight:600;
transform: translateX(10px);
}

.content {
grid-column: 2; /* Place in second column */
padding: 20px;
overflow-y: auto;
margin-left: 2%;
margin-right: 2%;
font-family: "OPPOSans-Medium";
font-family: "NaNSerfAText-Medium";
font-size: Large;
}


.gallery {
width: 100%;
height: 800px; /* Adjust as needed */
position: relative;
overflow: hidden;
}

.gallery-container {
width: 100%;
height: 100%;
position: relative;
}

.gallery-item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
object-fit: cover; /* This maintains aspect ratio */
}

.gallery-item.active {
opacity: 1;
}


.page {
display: none; /* Hide all pages by default */
}

.page.active {
display: block; /* Show active page */
}

.right-column {
Expand Down

0 comments on commit c371a94

Please sign in to comment.