This commit is contained in:
2025-02-06 22:17:43 +05:30
parent eb2031672d
commit 4bda4d1841
10 changed files with 106 additions and 4 deletions

View File

@@ -10,7 +10,7 @@
### Xeorl - The All-In-One, Fully Free to Use Advanced Link Shortener and Management Tool - Powered by [@xodivorce](https://instagram.com/xodivorce) ✨ ### Xeorl - The All-In-One, Fully Free to Use Advanced Link Shortener and Management Tool - Powered by [@xodivorce](https://instagram.com/xodivorce) ✨
[![status](https://img.shields.io/badge/status-active-brightgreen.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/) [![status](https://img.shields.io/badge/status-active-brightgreen.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
[![version](https://img.shields.io/badge/version-v4.2.10-yellow.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/) [![version](https://img.shields.io/badge/version-v4.2.11-yellow.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
[![PRs](https://img.shields.io/badge/PRs-welcome-blue.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/) [![PRs](https://img.shields.io/badge/PRs-welcome-blue.svg?style=flat)](https://github.com/xeorl/xeorl-portfolio/)
<br></br> <br></br>

View File

@@ -10,7 +10,7 @@ if (session_status() === PHP_SESSION_NONE) {
<div class="logo"> <div class="logo">
<img src="assets/images/url.png" alt="Xeorl Logo" class="logo-img"> <img src="assets/images/url.png" alt="Xeorl Logo" class="logo-img">
<span>Xeorl</span> <span>Xeorl</span>
<span class="version-number">4.2.10</span> <span class="version-number">4.2.11</span>
</div> </div>
<label class="burger"> <label class="burger">

View File

@@ -9,4 +9,18 @@ body {
main { main {
padding: 60px 20px; padding: 60px 20px;
text-align: center; text-align: center;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
body {
overflow-x: auto;
overflow-y: hidden;
}

View File

@@ -68,6 +68,19 @@ footer {
left: -5px; left: -5px;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
body {
overflow-x: auto;
overflow-y: hidden;
}
@media (max-width: 1189px) { @media (max-width: 1189px) {
.footer-container { .footer-container {

View File

@@ -369,6 +369,20 @@ body {
margin-top: 10px; margin-top: 10px;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
body {
overflow-x: auto;
overflow-y: hidden;
}
@media (max-width: 990px) { @media (max-width: 990px) {
/* Adjust text sizes */ /* Adjust text sizes */
body { body {

View File

@@ -4,6 +4,8 @@ body {
padding: 0; padding: 0;
background-color: #ffffff; background-color: #ffffff;
color: #333333; color: #333333;
overflow-x: auto;
overflow-y: hidden;
} }
main { main {
@@ -349,6 +351,15 @@ main {
padding-left: 1.5rem; /* Add indentation to the descriptions */ padding-left: 1.5rem; /* Add indentation to the descriptions */
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
/* For screens 768px and below */ /* For screens 768px and below */
@media (max-width: 768px) { @media (max-width: 768px) {
.shorten-section h1 { .shorten-section h1 {

View File

@@ -5,6 +5,11 @@
box-sizing: border-box; box-sizing: border-box;
} }
body {
overflow-x: auto;
overflow-y: hidden;
}
:root { :root {
/* Color Variables */ /* Color Variables */
--background-color: #c1c2c4; --background-color: #c1c2c4;
@@ -379,6 +384,15 @@ body {
transition: background-color 0.3s, border-color 0.3s; transition: background-color 0.3s, border-color 0.3s;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
@media (max-width: 990px) { @media (max-width: 990px) {
/* Adjust text sizes */ /* Adjust text sizes */
body { body {

View File

@@ -4,9 +4,20 @@ body {
padding: 0; padding: 0;
background-color: #ffffff; background-color: #ffffff;
color: #333333; color: #333333;
overflow-x: auto;
overflow-y: hidden;
} }
main { main {
padding: 60px 20px; padding: 60px 20px;
text-align: center; text-align: center;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}

View File

@@ -5,6 +5,11 @@
box-sizing: border-box; box-sizing: border-box;
} }
body {
overflow-x: auto;
overflow-y: hidden;
}
:root { :root {
/* Color Variables */ /* Color Variables */
--background-color: #c1c2c4; --background-color: #c1c2c4;
@@ -362,6 +367,15 @@ body {
transition: background-color 0.3s, border-color 0.3s; transition: background-color 0.3s, border-color 0.3s;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
@media (max-width: 990px) { @media (max-width: 990px) {
/* Adjust text sizes */ /* Adjust text sizes */
body { body {

View File

@@ -3,6 +3,8 @@ body {
background: #ffffff; background: #ffffff;
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow-x: auto;
overflow-y: hidden;
} }
.max-container { .max-container {
@@ -83,6 +85,15 @@ button:active {
cursor: pointer; cursor: pointer;
} }
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #171C24;
border-radius: 0;
}
@media (max-width: 1170px) { @media (max-width: 1170px) {
.container { .container {
width: 650px; width: 650px;