Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Introduce SIG color theme 2024. #427

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/_includes/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@
</div>

<a href="https://sigrid-says.com" class="sigridLink">Access Sigrid</a>
<a href="mailto:support@softwareimprovementgroup.com" class="sigridLink">Contact our support team</a>
<a href="mailto:support@softwareimprovementgroup.com" class="sigridLink">Contact us</a>

<div class="footnote">
<img src="/images/sig-logo-white.svg" class="logo" />
<a href="https://softwareimprovementgroup.com" target="_blank">&copy; 2023 Software Improvement Group</a>
<a href="https://softwareimprovementgroup.com" target="_blank">&copy; 2024 Software Improvement Group</a>
<a href="https://github.com/Software-Improvement-Group/sigridci" target="_blabnk">Contribute to this documentation on GitHub</a>
<a href="https://www.softwareimprovementgroup.com/wp-content/uploads/SIG_SigridTermsOfUseConfidentiality.pdf" target="_blank">Terms of use</a>
<a href="https://www.softwareimprovementgroup.com/wp-content/uploads/SIG_Sigrid_Privacy_Statement.pdf" target="_blank">Privacy statement</a>
Expand Down
57 changes: 44 additions & 13 deletions docs/_includes/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body, td, th {
}

a {
color: #038096;
color: #1A65FF;
text-decoration: none;
}

Expand Down Expand Up @@ -46,11 +46,32 @@ ul {

ul li::before {
content: '\25A0';
color: #DFC101;
color: #F8C716;
padding-right: 8px;
margin-left: -1em;
}

hr {
width: 650px;
color: #B7B7B7;
margin-top: 40px;
margin-bottom: 40px;
}

blockquote {
border-left: 2px solid #212C3C;
padding-left: 25px;
margin-left: 2px;
}

aside {
background-color: #EBE6F9;
padding: 20px;
margin-top: 30px;
margin-bottom: 30px;
display: block;
}

summary {
cursor: pointer;
}
Expand All @@ -62,7 +83,7 @@ summary {

.container nav {
flex: 0 0 280px;
background-color: #233347;
background-color: #151632;
padding: 30px 20px 30px 20px;
box-shadow: 1px 0px 5px #687483;
}
Expand All @@ -85,7 +106,7 @@ summary {
}

.container nav .toc .category {
color: #DFC101;
color: #FFFFFF;
cursor: pointer;
padding-left: 24px;
}
Expand All @@ -111,33 +132,40 @@ summary {
.container nav .toc a.page {
padding-left: 25px;
font-size: 12px;
color: #F8C716;
}

.container nav .toc a.subPage {
padding-left: 40px !important;
font-size: 12px !important;
color: #F8C716;
}

.container nav .currentCategory {
display: block;
}

.container nav .toc a:hover, .toc .currentPage, nav .sigridLink:hover {
.container nav .toc a:hover, .toc .currentPage {
background-color: rgba(255, 255, 255, 0.2);
}

.container nav .sigridLink {
display: block;
color: #DFC101;
border: 1px solid #DFC101;
background-color: #F8C716;
color: #151632;
padding: 4px;
margin: 0px auto 16px auto;
margin-bottom: 16px;
text-align: center;
width: 170px;
border-radius: 4px;
border-radius: 15px;
font-size: 14px;
}

.container nav .sigridLink:hover {
background-color: #1A65FF;
color: #FFFFFF;
}

.container nav .footnote {
margin-top: 36px;
}
Expand Down Expand Up @@ -228,8 +256,7 @@ td, th {
sig-toc {
display: block;
width: 800px;
box-shadow: 1px 1px 3px #687483;
background-color: #eceef1;
background-color: #DEF0F8;
padding: 16px;
font-size: 12px;
}
Expand All @@ -248,10 +275,14 @@ sig-toc .h4 {
margin-left: 40px;
}

sig-toc a {
color: #151632;
}

.announcement {
display: block;
color: #334E68;
background-color: #92D7E3;
color: #151632;
background-color: #D4D6DA;
text-align: center;
font-size: 12px;
font-weight: bold;
Expand Down
9 changes: 3 additions & 6 deletions docs/workflows/best-practices-osh.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,9 @@ These jobs have been grouped in three categories: first some general guidelines
10. [Selecting a new library](#10-selecting-a-new-library)
11. [When a library does not meet the requirements](#11-when-a-library-does-not-meet-requirements)


---
**A word of caution:** _The guidelines and steps that follow are intended to be helpful in making decisions and taking proper actions; since every application context is unique, these guidelines and steps should never replace logical thinking, taking your unique situation into account!_

---

<aside>
A word of caution: The guidelines and steps that follow are intended to be helpful in making decisions and taking proper actions; since every application context is unique, these guidelines and steps should never replace logical thinking, taking your unique situation into account!
</aside>

### About the SIG Open Source Health (OSH) model
The SIG Open Source Health model is described here in the documentation: [OSH guidance for producers](../reference/quality-model-documents/open-source-health.md).
Expand Down
Loading