saved emails, gmail, hotmail start, home, landing etc
This commit is contained in:
@@ -176,4 +176,170 @@ button + button {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin: 10px 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Navbar styling */
|
||||
.navbar {
|
||||
display: flex;
|
||||
justify-content: space-between; /* logo left, links right */
|
||||
align-items: center;
|
||||
background-color: #fff;
|
||||
padding: 15px 30px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
||||
}
|
||||
|
||||
.navbar .logo {
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.navbar .nav-links {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.navbar .nav-links li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.navbar .nav-links a {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.navbar .nav-links a:hover,
|
||||
.navbar .nav-links a.active {
|
||||
color: #007bff; /* highlight */
|
||||
}
|
||||
|
||||
.connect-buttons button {
|
||||
margin: 8px;
|
||||
padding: 10px 18px;
|
||||
font-size: 14px;
|
||||
border-radius: 8px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
background: #444;
|
||||
color: #fff;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.connect-buttons button:hover {
|
||||
background: #666;
|
||||
}
|
||||
|
||||
table.inbox {
|
||||
width: 100%;
|
||||
margin-top: 15px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.inbox th, table.inbox td {
|
||||
padding: 10px;
|
||||
border-bottom: 1px solid #333;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
table.inbox tr:hover {
|
||||
background: #222;
|
||||
}
|
||||
|
||||
/* Dashboard Layout */
|
||||
.dashboard {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
width: 220px;
|
||||
background: #111827; /* dark slate */
|
||||
color: #fff;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sidebar .logo {
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.sidebar ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.sidebar ul li {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
.sidebar ul li a {
|
||||
color: #d1d5db;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
display: block;
|
||||
padding: 8px;
|
||||
border-radius: 8px;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebar ul li a:hover {
|
||||
background: #374151;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Main Content */
|
||||
.main-content {
|
||||
flex: 1;
|
||||
padding: 40px;
|
||||
background: #f3f4f6;
|
||||
}
|
||||
|
||||
.dark-mode .main-content {
|
||||
background: #1f2937;
|
||||
color: #f3f4f6;
|
||||
}
|
||||
|
||||
/* Force full-width flex layout */
|
||||
body, html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Dashboard wrapper */
|
||||
.dashboard {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
width: 220px;
|
||||
background: #0f172a;
|
||||
color: #fff;
|
||||
padding: 20px;
|
||||
margin: 0; /* REMOVE spacing */
|
||||
position: fixed; /* Stick to left */
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
/* Main content area */
|
||||
.main-content {
|
||||
margin-left: 220px; /* Push content to the right of sidebar */
|
||||
padding: 30px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user