forked from eclipse-score/eclipse-score.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue-ref: see eclipse-score#7 * Uses pyData Sphinx theme * Changes default theme colors * Add How to get involved page * Small fix for the github CI docs build
- Loading branch information
Showing
9 changed files
with
345 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,12 @@ MODULE.bazel.lock | |
|
||
# Ruff | ||
.ruff_cache | ||
|
||
# Python | ||
.venv/ | ||
|
||
# Environments | ||
.envrc | ||
|
||
# Sphinx builds | ||
_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
html { | ||
--pst-font-size-base: 17px; | ||
} | ||
|
||
.underline { | ||
text-decoration: underline; | ||
} | ||
|
||
/* SCORE specfic colors | ||
A list of available colro variable names for pyData Sphinx Theme can be found at | ||
https://pydata-sphinx-theme.readthedocs.io/en/stable/_downloads/565fbb3ecf2b3048f5fb3953890ba176/_color.scss | ||
The base color is TEAL */ | ||
|
||
|
||
html[data-theme="light"] { | ||
--pst-color-primary: #547980; | ||
--pst-color-secondary: #45ADA8; | ||
--pst-color-accent: #9DE0AD; | ||
--pst-color-target: #E5FCC2; | ||
--pst-color-on-surface: #594F4F; | ||
--pst-color-on-background: var(--pst-color-secondary); | ||
--pst-color-text-muted: #FFFFFF; | ||
} | ||
|
||
html[data-theme="dark"] { | ||
--pst-color-primary: #45ADA8; | ||
--pst-color-secondary: #547980; | ||
--pst-color-accent: #9DE0AD; | ||
--pst-color-target: #E5FCC2; | ||
--pst-color-on-surface: #594F4F; | ||
--pst-color-on-background: var(--pst-color-secondary); | ||
--pst-color-text-muted: #FFFFFF; | ||
} | ||
|
||
.search-button-field { | ||
color: var(--pst-color-primary); | ||
} | ||
html .pst-navbar-icon:hover { | ||
border-bottom: max(3px,.1875rem,.12em) solid var(--pst-color-primary) !important; | ||
color: var(--pst-color-primary) !important; | ||
} | ||
|
||
.bd-header ul.navbar-nav > li.nav-item.current > .nav-link { | ||
color: var(--pst-color-text-muted) !important; | ||
font-weight: 900 !important; | ||
} | ||
|
||
.bd-header ul.navbar-nav > li.nav-item > .nav-link:hover { | ||
color: var(--pst-color-primary); | ||
} | ||
|
||
.bd-search input.form-control::placeholder, | ||
.bd-search input.form-control { | ||
color: var(--pst-color-primary) !important; | ||
} | ||
|
||
/* Right sidebar */ | ||
.toc-entry a.nav-link { | ||
color: var(--pst-color-text-base); | ||
} | ||
/* Left, top SCORE brand */ | ||
.navbar-brand p | ||
{ | ||
color: var(--pst-color-text-muted); | ||
font-weight: 900; | ||
} | ||
.navbar-brand:hover, .navbar-brand:visited:hover { | ||
text-decoration: none; | ||
} | ||
|
||
/* GitHub logo for shorten URL */ | ||
a.github::before { | ||
content: var(--pst-icon-github); | ||
color: var(--pst-color-text-base); | ||
} | ||
a.github { | ||
text-decoration: none !important; | ||
} | ||
|
||
/* SCORE Background video | ||
Source: https://www.imi21.com/background-video-full-screen.php */ | ||
|
||
div.score_banner { | ||
background-color: var(--pst-color-on-surface); | ||
} | ||
#videowrapper{ | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
#fullScreenDiv{ | ||
height: 300px; | ||
width: 100%; | ||
padding:0; | ||
margin: 0; | ||
/* background-color: gray; | ||
position: relative; */ | ||
container-type: inline-size; | ||
} | ||
|
||
#video{ | ||
width: 100%; | ||
/* height: auto; | ||
margin: auto; | ||
display: block; */ | ||
} | ||
@media (min-aspect-ratio: 16/9) { | ||
#video{ | ||
width: 100%; | ||
height:auto; | ||
} | ||
} | ||
|
||
#score-title { | ||
width: 100%; | ||
height: 100%; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
color: var(--pst-color-text-base); | ||
/* font-size: 4.5em; */ | ||
font-size: 8.0cqw; | ||
font-weight: 900; | ||
|
||
/* Is somehow cool with image/video title background */ | ||
/*animation: fadeIn 3s; */ | ||
} | ||
|
||
/* As long as no image or video is shown in | ||
the title, this is not needed, but kept | ||
for future needs */ | ||
/* html[data-theme="light"] #score-title { | ||
background-color: rgba(0,0,0,0.3); | ||
} | ||
html[data-theme="dark"] #score-title { | ||
background-color: rgba(0,0,0,0.5); | ||
} */ | ||
|
||
#score-subtitle { | ||
font-size: 0.4em; | ||
} | ||
|
||
#score-phrase { | ||
font-size: 0.3em; | ||
font-weight: 400; | ||
} | ||
|
||
@keyframes fadeIn { | ||
0% { opacity: 0; } | ||
100% { opacity: 1; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
.. | ||
# ******************************************************************************* | ||
# Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# ******************************************************************************* | ||
.. role:: underline | ||
:class: underline | ||
|
||
Get involved | ||
============ | ||
|
||
How to get in contact with SCORE | ||
-------------------------------- | ||
|
||
If you want to get into contact with SCORE, these are your primary entry points: | ||
|
||
:Project Mailing List: [email protected] | ||
|
||
:Architectural Discussion: `#score-project-open-channel <https://sdvworkinggroup.slack.com/archives/C083Z4VL90B>`__ | ||
|
||
| **General Information / Alignment regarding SCORE as a basis for distributions & products:** | ||
| Contact one of the project leads of SCORE https://projects.eclipse.org/projects/automotive.score/who | ||
The technical HOWTO regarding involvement into SCORE is described here: | ||
https://github.com/eclipse-score/score/blob/main/CONTRIBUTION.md | ||
|
||
How to get involved into SCORE | ||
------------------------------ | ||
|
||
The :underline:`only` way to influence SCORE is TO CONTRIBUTE. Everybody can contribute – SCORE is open. | ||
|
||
Active Contributions to the SCORE project are the basis for getting involved. The SCORE Project works according to | ||
the Eclipse Project Handbook and has named and elected project leads and committers (see https://projects.eclipse.org/projects/automotive.score/who). | ||
Direction of the SCORE project is discussed and decided in the project lead circle, technical direction is created and prediscussed in the tech | ||
lead circle. Meeting notes are transparent via the SCORE github organization. (see https://github.com/orgs/eclipse-score/discussions) | ||
|
||
We aim to build a safety ready full stack architecture, where components fit to each other in | ||
automotive grade Software Quality and performance. To achieve this, we follow a strict feature roadmap and architecture | ||
and a rigid software development process (publicly available in the SCORE Project Handbook starting end of 2024). | ||
|
||
Contributions to the SCORE project must therefore follow the technical direction of the project and the SCORE | ||
architecture. All work in SCORE will therefore follow a "Contribution Request" Process. Features on the roadmap of | ||
SCORE are defined, Contribution Requests create the basis for individual contributions from within the SCORE | ||
project and also from the outside. | ||
|
||
You can make proposals for new features or architectural building blocks besides the active contribution requests. | ||
Those will not by default be part of the next release of SCORE, because the SCORE release roadmap will strictly | ||
comply with the contribution request structure. | ||
We plan to have the initial contribution request structure available in the SCORE GitHub until Q1 / 2025. | ||
|
||
We plan to incorporate a staging area for such contributions, but | ||
in the initial phase of the SCORE project (until end of 2025) the focus will be primarily on building a valid 1.0 | ||
release. Feel free to reach out via the communication channels above. | ||
|
||
If you think about your contribution to SCORE, the Contribution Request overview | ||
is the best place to start (available on https://github.com/eclipse-score/score/issues starting Q1 / 2025) | ||
|
||
Based on successful code contributions to the SCORE roadmap, further steps in involvement (like becoming a committer) | ||
will be handled according to the rules of the Eclipse Foundation Project Handbook. We value real code based | ||
collaboration and will judge new potential contributors and committers mainly on the validity of their work. Active | ||
and sustaining contributions are the basis for the ability to shape SCORE. | ||
|
||
Making active code contributions via the contribution request process described in the Project Handbook. The | ||
project handbook will be available on the SCORE website until end of 2024. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
|
||
Sphinx==8.1.3 | ||
sphinx-needs==4.1.0 | ||
pydata-sphinx-theme==0.16.0 |
Oops, something went wrong.