Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes #10

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ <h2>Login Here</h2>
FusionCraft STUDIOS is dedicated to bringing <strong>imaginations</strong> to life through <br> innovative design and structural expertise. <br> With a passion for blending creativity and engineering, <br>we strive to turn visionary concepts into tangible realities. <br> Our studio specializes in crafting unique and dynamic solutions <br> that push the boundaries of both artistic expression and architectural precision, <br> ensuring that every project we undertake is a fusion of <strong>creativity</strong> and <strong>craftsmanship</strong>.
</div>
<div class="buttons">
<button>SEE MORE</button>
<button>SUBSCRIBE</button>
<button class="b1">SEE MORE</button>
<button class="b2">SUBSCRIBE</button>
</div>
</div>
</div>
Expand Down
39 changes: 32 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ body {
color: #eee;
font-family: Poppins, sans-serif;
font-size: 12px;
overflow: hidden;
}

a {
Expand Down Expand Up @@ -208,12 +209,23 @@ header .menu {
}

.carousel .list .item .author {
margin-top: 20px;
margin-left: 100px;
margin-bottom: -10px;
font-weight: bold;
letter-spacing: 10px;
color: #f1683aa1;
font-size: 20px;
}

.title, .topic, .des, .buttons{
margin-left: 20px;
}

.b2 {
margin-left: 8px;
}

.carousel .list .item::after {
content: '';
width: 81px;
Expand Down Expand Up @@ -288,22 +300,34 @@ header .menu {
/* Thumbnail */
.thumbnail {
position: absolute;
bottom: 50px;
left: 50%;
width: 50%;
bottom: 5px;
left: 37%;
width: 62%;
z-index: 100;
display: flex;
gap: 20px;
gap: 30px;
cursor: grab;
transition: .4s ease;
box-sizing: border-box; /* Includes padding/border in size */
padding: 100px 25px; /* 100px padding to the top and bottom, 25px to the left and right */
overflow-x: auto; /* Enables horizontal scroll */
}

.thumbnail::-webkit-scrollbar {
width: 3px;
height: 3px;
}
.thumbnail::-webkit-scrollbar-track {
background: #ffffff;
}

::-webkit-scrollbar-thumb {
background: #888;
}

.thumbnail .item {
width: 150px;
height: 220px;
width: 155px;
height: 200px;
flex-shrink: 0;
position: relative;
transition: 0.2s ease-in-out;
Expand Down Expand Up @@ -389,7 +413,8 @@ body {
.login-container {
position: fixed; /* Fixed position to stay at the top left */
right: 20px; /* Space from the right */
bottom: 500px; /* Space from the bottom */
bottom: 365px; /* Space from the bottom */
top: 50px;
background-color: transparent; /* Ttransparent background */
border-radius: 8px; /* Rounded corners */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9); /* Subtle shadow */
Expand Down