new pages and simple navbar
This commit is contained in:
71
res/css/pages.css
Normal file
71
res/css/pages.css
Normal file
@@ -0,0 +1,71 @@
|
||||
/* Navigation Styling */
|
||||
header {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.main-nav {
|
||||
background-color: #333;
|
||||
padding: 1rem 0;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main-nav ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.main-nav a {
|
||||
color: #f0f0f0;
|
||||
text-decoration: none;
|
||||
font-family: 'League Gothic', sans-serif;
|
||||
font-size: 1.5rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s ease, color 0.3s ease;
|
||||
}
|
||||
|
||||
.main-nav a:hover,
|
||||
.main-nav .active {
|
||||
background-color: #ffffff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
|
||||
|
||||
/* Page-specific layout */
|
||||
.page-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
margin: 4rem auto;
|
||||
max-width: 900px;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.page-logo {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
height: auto;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.page-content h1 {
|
||||
font-size: 3.5rem;
|
||||
color: #ffffff;
|
||||
margin: 0 0 1rem 0;
|
||||
}
|
||||
|
||||
.page-content p {
|
||||
color: #c0c0c0;
|
||||
font-size: 1.2rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
Reference in New Issue
Block a user