This commit is contained in:
2025-02-06 14:48:46 +05:30
parent 1ff9cba2d0
commit e319f46ac2
32 changed files with 42 additions and 5450 deletions

Binary file not shown.

View File

@@ -15,9 +15,9 @@
</script>
</p>
<div class="footer-links">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Contact</a>
<a href="https://docs.google.com/document/d/1sZ2TwjST8nKaRl-rSteAd2XHlVZdDhgS6jHRKwjDedc/edit?usp=sharing">Privacy</a>
<a href="https://docs.google.com/document/d/1QcUohit6U3ZmWyOZbggbpUr2KrQ6pwy3X-R4zUGfZBo/edit?usp=sharing">Terms</a>
<a href="home.php">Contact</a>
<a href="https://github.com/xodivorce/xeorl" target="_blank" >Github</a>
</div>
</div>

View File

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

View File

@@ -1,120 +1,12 @@
/* General Styles */
body {
font-family: "Montserrat", sans-serif;
margin: 0;
padding: 0;
display: flex;
height: 100vh;
background-color: #ffffff;
color: #111313;
color: #333333;
}
/* User Image */
.user-image {
width: 40px;
height: 40px;
margin-top: -5px;
border-radius: 50%;
margin-left: 25px;
border: 1px solid #ffffff;
}
/* Sidebar Styles */
.sidebar {
width: 20%;
background-color: #ffffff;
color: #98E5DD;
display: flex;
flex-direction: column;
border: solid 1px rgb(58, 66, 65);
padding: 20px;
}
/* Sidebar Header (Flexbox) */
.sidebar .sidebar-header {
display: flex;
flex-wrap: wrap; /* Allows wrapping when screen is small */
align-items: center; /* Ensures vertical alignment */
margin-left: -25px;
margin-right: -20px;
margin-top: 45px;
}
/* Image & Text Flexbox */
.sidebar .sidebar-header .user-image {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
}
.user-info {
font-size: 14px;
margin-bottom: 20px;
line-height: 1.4;
color: #171c24;
}
.user-email {
color: #677583;
}
/* Sidebar Links */
.sidebar a {
text-decoration: none;
color: #171c24;
padding: 15px;
display: block;
font-size: 16px;
transition: background-color 0.3s ease; /* Keep only background-color for transition */
}
/* Main Content */
.content {
width: 80%;
padding: 20px;
}
.content h2, .content h3 {
color: #EEB58F;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
body {
flex-direction: column;
}
.sidebar {
width: 100%;
height: auto;
display: flex;
flex-direction: row;
justify-content: space-around;
padding: 10px;
}
.sidebar .sidebar-header {
justify-content: flex-start;
text-align: center;
margin-left: 0;
margin-right: 0;
}
.sidebar .sidebar-header .user-image {
margin-left: 0;
margin-right: 10px;
}
.user-info {
font-size: 12px;
text-align: left;
}
.content {
width: 100%;
padding: 20px;
}
}
main {
padding: 60px 20px;
text-align: center;
}