Skip to content
Merged
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 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<li><a href="/explore.html">Services</a></li>
<li><a href="/community.html">Community</a></li>
<li><a href="/pages/livestream.html">𝕏 Live Spaces</a></li>
<li><a href="/ofidtales.html">OFiD Tales</a></li>
<li><a href="/ofidtales.html">Family Fun</a></li>
<li><a href="/pages/about.html">About Us</a></li>
</ul>
<ul class="icons">
Expand Down Expand Up @@ -212,7 +212,7 @@ <h3>Social</h3>
<li><a href="/bouncyball.html">Token</a></li>
<li><a href="/docs/main.html">Docs</a></li>
<li><a href="/pages/affiliate.html">Partners</a></li>
<li><a href="/pages/about.html">About Us</a></li>
<li><a href="/pages/about.html">About</a></li>
</ul>
<ul>
<ul><li>&copy; OF<span class="i">i</span>DCrypt e𝕏P Web3™ 2025</li></ul>
Expand Down
275 changes: 183 additions & 92 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2948,118 +2948,209 @@ form > .fields > .field.quarter {
/* Icon */

.icon {
text-decoration: none;
border-bottom: none;
position: relative;
color: var(--button-text-color);
text-decoration: none;
border-bottom: none;
position: relative;
color: var(--button-text-color);
}

.icon:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
text-transform: none !important;
font-family: 'Font Awesome 6 Free'; /* Updated to Font Awesome 6 Free */
font-weight: 400;
}
.icon:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
text-transform: none !important;
font-family: 'Font Awesome 6 Free';
/* Updated to Font Awesome 6 Free */
font-weight: 400;
}

.icon > .label {
display: none;
}
.icon>.label {
display: none;
}

.icon:before {
line-height: inherit;
}
.icon:before {
line-height: inherit;
}

.icon.solid:before {
font-weight: 900;
}
.icon.solid:before {
font-weight: 900;
}

.icon.brands:before {
font-family: 'Font Awesome 6 Brands'; /* Updated to Font Awesome 6 Brands */
}
.icon.brands:before {
font-family: 'Font Awesome 6 Brands';
/* Updated to Font Awesome 6 Brands */
}

/* Image */

.image {
border: 0;
display: inline-block;
position: relative;
.image {
border: 0;
display: inline-block;
position: relative;
}

.image img {
display: block;
}

.post {
overflow: auto;
}

.image.left,
.image.right {
max-width: 30%;
/* This makes the image containers 30% of their parent's width */
}

.image.left img,
.image.right img {
max-width: 100%;
height: auto;
object-fit: contain;
/* Remove or increase max-height if set */
border-radius: 8px;
}

.image.left {
float: left;
margin-right: 1.5rem;
/* Adjusted for larger images */
}

.image.right {
float: right;
margin-left: 1.5rem;
/* Adjusted for larger images */
}

.image.fit {
display: block;
margin: 2.5rem 0;
width: 100%;
}

.image.fit:first-child {
margin-top: 0;
}

.image.fit img {
width: 100%;
}

.image.main {
display: block;
margin: 4rem 0;
width: 100%;
}

.image.main:first-child {
margin-top: 0;
}

.image.main img {
width: 100%;
}

@media screen and (max-width: 736px) {

.image.left,
.image.right {
float: none;
max-width: 100%;
margin: 1rem 0;
}

.image img {
display: block;
}
.image.left img,
.image.right img {
max-width: 100%;
}

.post {
overflow: auto;
}

.image.left, .image.right {
max-width: 30%; /* This makes the image containers 30% of their parent's width */
}

.image.left img, .image.right img {
max-width: 100%;
height: auto;
object-fit: contain;
/* Remove or increase max-height if set */
border-radius: 8px;
}

.image.left {
float: left;
margin-right: 1.5rem; /* Adjusted for larger images */
}

.image.right {
float: right;
margin-left: 1.5rem; /* Adjusted for larger images */
}

.image.fit {
display: block;
margin: 2.5rem 0;
width: 100%;
}
.product-content a,
.product-content a .image,
.product-content a .image.left,
.product-content a .image.right {
border-bottom: none !important;
}

.image.fit:first-child {
margin-top: 0;
}
.image.fit {
margin: 2rem 0;
}

.image.fit img {
width: 100%;
}
.image.main {
margin: 2rem 0;
}
}

.image.main {
display: block;
margin: 4rem 0;
width: 100%;
}
@media screen and (min-width: 737px) {

.image.main:first-child {
margin-top: 0;
}
.image.left,
.image.right {
max-width: 45%;
/* Keep increased size */
width: auto;
/* Allow natural width up to max-width */
}

.image.main img {
width: 100%;
}
.image.left {
float: left;
margin: 15px 25px 15px 0;
/* Remove left margin (0), keep right (25px) for text spacing */
}

@media screen and (max-width: 736px) {
.image.right {
float: right;
margin: 15px 0 15px 25px;
/* Remove right margin (0), keep left (25px) for text spacing */
}

.image.fit {
margin: 2rem 0;
}
.image.left img,
.image.right img {
max-width: 100%;
/* Scale within container */
height: auto;
/* Maintain aspect ratio */
object-fit: contain;
border-radius: 8px;
/* Keep existing border radius */
}

.image.main {
margin: 2rem 0;
}
.product-content {
overflow: hidden;
/* Clearfix for floated images */
padding: 0 20px 20px 20px;
/* Prevent text crowding */
max-width: 1200px;
/* Limit content width */
margin: 0 auto;
/* Center content */
}

}
.product-wrapper {
width: 100%;
/* Full width */
max-width: 1200px;
/* Consistent with product-content */
margin: 0 auto;
/* Center wrapper */
}

.product-content p {
margin: 1.5em 0;
/* Standardize paragraph spacing */
line-height: 1.6;
/* Improve readability */
}
/* Remove underlines from linked images */
.product-content a .image.left,
.product-content a .image.right {
border-bottom: none !important;
}
}

/* Affiliate desktop styles */
.image.left.affiliate,
Expand Down Expand Up @@ -5116,7 +5207,7 @@ section.livestream {
}

.product-wrapper {
margin-top: 2rem; /* Adjust the value as needed */
margin-top: 0rem; /* Adjust the value as needed */
}

/* Clear the float after each section */
Expand Down
Binary file added assets/images/ofid-exp-discover.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 assets/images/ofid-exp-partners.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions bouncyball.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<li><a href="explore.html">Services</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="pages/livestream.html">𝕏 Live Spaces</a></li>
<li><a href="ofidtales.html">OFiD Tales</a></li>
<li><a href="ofidtales.html">Family Fun</a></li>
<li><a href="pages/about.html">About Us</a></li>
</ul>
<ul class="icons">
Expand Down Expand Up @@ -305,7 +305,7 @@ <h3>Social</h3>
<li><a href="/bouncyball.html">Token</a></li>
<li><a href="/docs/main.html">Docs</a></li>
<li><a href="/pages/affiliate.html">Partners</a></li>
<li><a href="/pages/about.html">About Us</a></li>
<li><a href="/pages/about.html">About</a></li>
</ul>
<ul>
<ul><li>&copy; OF<span class="i">i</span>DCrypt e𝕏P Web3™ 2025</li></ul>
Expand Down
4 changes: 2 additions & 2 deletions cashlinks.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<li><a href="explore.html">Services</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="pages/livestream.html">𝕏 Live Spaces</a></li>
<li><a href="ofidtales.html">OFiD Tales</a></li>
<li><a href="ofidtales.html">Family Fun</a></li>
<li><a href="pages/about.html">About Us</a></li>
</ul>

Expand Down Expand Up @@ -351,7 +351,7 @@ <h3>Social</h3>
<li><a href="/bouncyball.html">Token</a></li>
<li><a href="/docs/main.html">Docs</a></li>
<li><a href="/pages/affiliate.html">Partners</a></li>
<li><a href="/pages/about.html">About Us</a></li>
<li><a href="/pages/about.html">About</a></li>
</ul>
<ul>
<ul><li>&copy; OF<span class="i">i</span>DCrypt e𝕏P Web3™ 2025</li></ul>
Expand Down
4 changes: 2 additions & 2 deletions community.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<li><a href="explore.html">Services</a></li>
<li class="active"><a href="community.html">Community</a></li>
<li><a href="pages/livestream.html">𝕏 Live Spaces</a></li>
<li><a href="ofidtales.html">OFiD Tales</a></li>
<li><a href="ofidtales.html">Family Fun</a></li>
<li><a href="pages/about.html">About Us</a></li>
</ul>
<ul class="icons">
Expand Down Expand Up @@ -613,7 +613,7 @@ <h3>Social</h3>
<li><a href="/bouncyball.html">Token</a></li>
<li><a href="/docs/main.html">Docs</a></li>
<li><a href="/pages/affiliate.html">Partners</a></li>
<li><a href="/pages/about.html">About Us</a></li>
<li><a href="/pages/about.html">About</a></li>
</ul>
<ul>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h3>Social</h3>
<li><a href="../bouncyball.html">Token</a></li>
<li><a href="main.html">Docs</a></li>
<li><a href="/pages/affiliate.html">Affiliate</a></li>
<li><a href="/pages/about.html">About Us</a></li>
<li><a href="/pages/about.html">About</a></li>

</ul>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/pa1.html
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ <h3>Social</h3>
<li><a href="../bouncyball.html">Token</a></li>
<li><a href="main.html">Docs</a></li>
<li><a href="/pages/affiliate.html">Affiliate</a></li>
<li><a href="/pages/about.html">About Us</a></li>
<li><a href="/pages/about.html">About</a></li>

</ul>
<ul>
Expand Down
Loading