Skip to content
Snippets Groups Projects
Commit bd01dbdf authored by Kristina Mazur's avatar Kristina Mazur
Browse files

Merge branch 'feature-new-layout1' into 'main'

New layout

See merge request !4
parents c4a9fc7e caa50f5b
No related branches found
No related tags found
3 merge requests!76Draft: Updated Python code example,!73Initial open source version,!4New layout
Pipeline #1534251 waiting for manual action
Showing
with 155 additions and 19 deletions
# Ignore generated Doxygen docs in modules folder # Ignore generated Doxygen docs in modules folder
docs/modules/**/ docs/documentation/**/
# Ignore the local docs of the AcXML # Ignore the local docs of the AcXML
docs/aircraft-xml/ docs/aircraft-xml/
...@@ -29,7 +29,7 @@ doxygen: ...@@ -29,7 +29,7 @@ doxygen:
- apk update && apk --no-cache add git doxygen graphviz ttf-freefont texmf-dist texmf-dist-latexextra texlive texlive-dvi - apk update && apk --no-cache add git doxygen graphviz ttf-freefont texmf-dist texmf-dist-latexextra texlive texlive-dvi
script: script:
- git clone -b feature-aircraftGeometry2 --recurse-submodules https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/libraries - git clone -b feature-aircraftGeometry2 --recurse-submodules https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/libraries
- cd libraries/aircraftGeometry2/doc/ && ( cat Doxyfile ; echo "OUTPUT_DIRECTORY = $CI_PROJECT_DIR/docs/modules/" ) | doxygen - - cd libraries/aircraftGeometry2/doc/ && ( cat Doxyfile ; echo "OUTPUT_DIRECTORY = $CI_PROJECT_DIR/docs/documentation/" ) | doxygen -
artifacts: artifacts:
paths: paths:
- $CI_PROJECT_DIR/docs/modules - $CI_PROJECT_DIR/docs/modules
......
@ todo needs input
\ No newline at end of file
/* Define color variables in :root for easy reference */
:root {
--primary-color: #2C3E50; /* Primary color for headers, hero section, and cards */
--background-color: #34495E; /* Background color for main content areas */
--text-color: #D1D5DB; /* Main text color for readability on dark backgrounds */
--button-bg-color: #ffffff; /* Background color for buttons */
--accent-color: #E74C3C; /* Accent color for links and hover effects */
--secondary-accent: #1ABC9C; /* Secondary accent color for icons */
--link-color: #3498DB; /* Link color for clickable items */
--link-hover-color: #E74C3C; /* Hover color for links */
}
.md-header {
background-color: var(--primary-color);
}
/* Apply primary color to tab backgrounds */
[data-md-color-scheme=slate] .md-tabs {
background-color: var(--primary-color);
}
/* Hero Section Styling */
.hero-section {
background-color: var(--primary-color);
padding: 2em;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 1060px;
margin: auto;
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Text styling within the hero section */
.intro-text {
color: var(--text-color);
font-size: 1.1em;
}
/* Download button styling */
.download-button-container {
text-align: center;
margin-top: 20px;
}
.download-button {
display: inline-block;
background-color: var(--button-bg-color); /* Uses button background color */
padding: 10px 20px;
font-size: 1.1em;
font-weight: bold;
border-radius: 5px;
text-decoration: none;
color: var(--primary-color); /* Button text color */
transition: background-color 0.3s ease;
}
/* Grid Container */
.grid-container { .grid-container {
grid-gap: .4rem;
display: grid; display: grid;
grid-template-columns: repeat(auto-fit,minmax(16rem,1fr)); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
margin: 1em 0; gap: 1.5em;
margin: 2em auto;
max-width: 1100px;
padding: 1em;
} }
.grid-item { .grid-item {
border: .05rem solid var(--md-default-fg-color--lightest); background-color: var(--primary-color); /* Uses primary color for card background */
border-radius: .1rem; padding: 1.5em;
display: block; border-radius: 10px;
margin: 0; text-align: left;
padding: .8rem; color: var(--text-color); /* Text color for readability */
transition: border .25s,box-shadow .25s; transition: transform 0.3s, box-shadow 0.3s;
} }
.grid-item:where(:hover, :focus) { .grid-item h3 {
border-color: #0000; font-size: 1.25em;
box-shadow: var(--md-shadow-z2); margin-bottom: 0.5em;
} }
.overview-item { /* Card styling with hover effects */
min-height: 240px; .card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
border: 1px solid rgba(255, 255, 255, 0.1);
} }
.overview-img { .card:hover {
width: 200px; transform: translateY(-5px);
} box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
\ No newline at end of file }
/* Link styling within cards */
.card a {
color: var(--link-color);
font-weight: bold;
}
.card a:hover {
color: var(--link-hover-color); /* Changes to accent color on hover */
}
/* Accent color for icons or specific elements */
.accent {
color: var(--secondary-accent); /* Teal accent color for specific elements */
}
/* Footer Styling */
.custom-footer {
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(--primary-color); /* Background color for the footer */
color: var(--text-color);
padding: 1em 2em; /* Adjust padding for spacing */
font-size: 1em; /* Increase text size for better readability */
border-top: 1px solid rgba(255, 255, 255, 0.2); /* Subtle top border */
}
/* Align text and links */
.footer-content {
display: flex;
align-items: center;
gap: 1em; /* Space between text and impressum link */
}
.footer-content p {
margin: 0; /* Remove extra spacing */
font-size: 1.4em; /* Make text slightly larger */
}
/* Footer link styling */
.footer-link {
color: var(--text-color);
text-decoration: none;
font-weight: bold;
font-size: 1.4em;
border-bottom: 1px solid transparent;
margin-left: 1em; /* Space between copyright and link */
}
.footer-link:hover {
border-bottom: 1px solid var(--accent-color); /* Underline on hover with accent color */
}
/* Footer image styling */
.footer-image-container {
display: flex;
align-items: center;
}
.footer-image {
width: 150px; /* Adjust the width as needed */
height: auto;
margin-left: 1em; /* Space between image and text */
border-radius: 8px; /* Optional: Rounded corners */
}
docs/assets/images/developer/python-debug-binaries.png

131 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment