update css
This commit is contained in:
parent
344c53544a
commit
3b06237e12
@ -1,3 +1,4 @@
|
|||||||
|
/* Base Styles */
|
||||||
body {
|
body {
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -5,15 +6,22 @@ body {
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
color: #333;
|
color: #333;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
background-color: #f8f9fa;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #2c5364;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl, ol, ul {
|
dl, ol, ul {
|
||||||
@ -21,33 +29,46 @@ dl, ol, ul {
|
|||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Primary Background */
|
||||||
.bg-primary {
|
.bg-primary {
|
||||||
--bs-bg-opacity: 1;
|
--bs-bg-opacity: 1;
|
||||||
background-color: rgb(0 0 0) !important;
|
background-color: rgb(0, 0, 0) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Navbar Styles */
|
||||||
.navbar {
|
.navbar {
|
||||||
background-color: #121212;
|
background-color: #121212;
|
||||||
|
padding: 10px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand:hover {
|
||||||
|
color: #2c5364;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-nav .nav-link {
|
.navbar-nav .nav-link {
|
||||||
font-size: 1.15rem;
|
font-size: 1.15rem;
|
||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
transition: color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-nav .nav-link:hover {
|
||||||
|
color: #2c5364;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header */
|
||||||
header {
|
header {
|
||||||
background: #000000;
|
background: #000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: 2px 0;
|
padding: 10px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@ -57,9 +78,10 @@ h1 {
|
|||||||
|
|
||||||
p.lead {
|
p.lead {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read Article Button Styling */
|
/* Button Styles */
|
||||||
.btn-outline-primary {
|
.btn-outline-primary {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
@ -75,9 +97,11 @@ p.lead {
|
|||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pagination Styling */
|
/* Pagination Styles */
|
||||||
.pagination {
|
.pagination {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination .page-item .page-link {
|
.pagination .page-item .page-link {
|
||||||
@ -100,6 +124,7 @@ p.lead {
|
|||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Footer Styles */
|
||||||
footer {
|
footer {
|
||||||
background-color: #121212;
|
background-color: #121212;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -111,40 +136,21 @@ footer {
|
|||||||
.footer-logo {
|
.footer-logo {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-links a {
|
.footer-links a {
|
||||||
color: #999;
|
color: #999;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
|
transition: color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-links a:hover {
|
.footer-links a:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Custom Styles for Navbar and Dropdown */
|
/* Dropdown Styles */
|
||||||
.navbar {
|
|
||||||
background-color: #121212;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-brand {
|
|
||||||
font-size: 1.75rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-nav .nav-link {
|
|
||||||
font-size: 1.15rem;
|
|
||||||
color: #ffffff;
|
|
||||||
padding-right: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-nav .nav-link:hover {
|
|
||||||
color: #2c5364;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Custom Dropdown Styling */
|
|
||||||
.custom-dropdown {
|
.custom-dropdown {
|
||||||
background-color: #1e1e1e;
|
background-color: #1e1e1e;
|
||||||
border: none;
|
border: none;
|
||||||
@ -159,21 +165,24 @@ footer {
|
|||||||
transition: background-color 0.3s ease, color 0.3s ease;
|
transition: background-color 0.3s ease, color 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-dropdown .dropdown-item:hover {
|
.custom-dropdown .dropdown-item:hover,
|
||||||
background-color: #000000;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.custom-dropdown .dropdown-item:active {
|
.custom-dropdown .dropdown-item:active {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mobile Toggler */
|
/* Mobile Navbar Toggler */
|
||||||
.navbar-toggler {
|
.navbar-toggler {
|
||||||
border-color: #ffffff;
|
border-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-toggler-icon {
|
.navbar-toggler-icon {
|
||||||
color: #ffffff;
|
background-color: #ffffff;
|
||||||
|
width: 30px;
|
||||||
|
height: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.py-4 {
|
||||||
|
padding-top: 1.2rem !important;
|
||||||
|
padding-bottom: 1.5rem !important;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user