added the license

This commit is contained in:
Sage The DM 2024-08-15 07:22:45 +02:00
parent 2d23db0d6d
commit dc22b34cbe
3 changed files with 737 additions and 16 deletions

View file

@ -20,11 +20,9 @@ header {
position: fixed;
width: 100%;
padding: 15px 20px;
margin: auto;
margin-bottom: 10em;
margin-top: 0;
top: 0;
left: 0;
margin-bottom: 10em;
}
.header-content {
@ -119,6 +117,40 @@ article ul li:hover {
background-color: #2c3447;
}
/* License section styling */
.license {
margin-top: 20px;
padding: 15px;
background-color: #444b5e; /* Consistent with article background */
border-radius: 10px;
}
.license h2 {
font-size: 1.8em;
color: #ffcc00;
margin-top: 0;
}
.license ol {
list-style-type: none; /* Remove bullet points */
padding-left: 0;
}
.license ol li {
margin-bottom: 10px;
border-radius: 5px;
padding: 10px;
transition: background-color 0.3s ease;
}
.license ol li a {
text-decoration: none;
color: #ffcc00;
font-weight: bold;
font-size: 1.1em;
display: block;
}
/* Footer styling */
footer {
background-color: #222732;
@ -139,7 +171,6 @@ footer p {
margin: 0;
}
/* Responsive design */
/* Responsive design */
@media (max-width: 768px) {
/* Header */
@ -152,7 +183,7 @@ footer p {
flex-direction: column;
gap: 10px;
margin-top: 10px;
padding-left: 0;
padding-left: 0;
}
header ul li {
@ -160,12 +191,12 @@ footer p {
}
header ul li a {
padding: 10px;
padding: 10px;
}
/* Article */
article {
margin: 12em 10px;
margin: 12em 10px;
padding: 15px;
}
@ -174,19 +205,19 @@ footer p {
}
article h2 {
font-size: 1.5em;
font-size: 1.5em;
margin-bottom: 15px;
}
article ul {
padding-left: 0;
margin-left: 0;
padding-left: 0;
margin-left: 0;
}
article ul li {
font-size: 1em;
padding: 8px;
margin-bottom: 10px;
font-size: 1em;
padding: 8px;
margin-bottom: 10px;
}
article ul li a {
@ -208,4 +239,3 @@ footer p {
margin-bottom: 10px; /* Adjust spacing below project name */
}
}