Skip to content

Commit 1d42945

Browse files
committed
Add new SVG logos for GitHub and Unraid
- Added GitHub Lockup White Clearspace logo. - Added Unraid Social logos in Circle and Square formats. - Introduced various Unraid logotypes: black, gradient, white, and stacked versions in different styles. - Included gradient versions of Unraid marks.
1 parent 31fc5ad commit 1d42945

43 files changed

Lines changed: 475 additions & 4 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Contributing to Unraid Plugin Documentation
22

3+
<a href="https://github.com/mstrhakr/unraid-plugin-docs"><img src="assets/images/logos/GitHub%20Logos/GitHub_Lockup_White.svg" alt="GitHub" height="40" align="right"></a>
4+
35
Thank you for your interest in contributing! This documentation is a community effort, and we welcome all contributions.
46

57
## Ways to Contribute

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
[![Unraid](https://img.shields.io/badge/Unraid-6.9+-orange.svg)](https://unraid.net/)
77
[![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)](CONTRIBUTING.md)
88

9+
<p>
10+
<a href="https://github.com/mstrhakr/unraid-plugin-docs"><img src="assets/images/logos/GitHub%20Logos/GitHub_Lockup_White.svg" alt="View on GitHub" height="32"></a>
11+
&nbsp;&nbsp;
12+
<a href="https://github.com/features/copilot"><img src="assets/images/logos/GitHub%20Logos/GitHub_Copilot_Lockup_White.svg" alt="Built with GitHub Copilot" height="28"></a>
13+
</p>
14+
915
---
1016

1117
## 📖 About This Documentation
@@ -181,6 +187,8 @@ plugin version /var/log/plugins/myplugin.plg
181187

182188
## 🤝 Contributing
183189

190+
<a href="https://github.com/mstrhakr/unraid-plugin-docs"><img src="assets/images/logos/GitHub%20Logos/GitHub_Invertocat_White.svg" alt="GitHub" height="48" align="right"></a>
191+
184192
This documentation is a community effort! Contributions are welcome:
185193

186194
- **Found an error?** [Open an issue](../../issues)

_config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ back_to_top_text: "Back to top"
1919
# Footer content
2020
footer_content: "Unofficial community documentation. Not affiliated with Lime Technology."
2121

22+
# GitHub Edit Link
23+
gh_edit_link: true
24+
gh_edit_link_text: "Edit this page on GitHub"
25+
gh_edit_repository: "https://github.com/mstrhakr/unraid-plugin-docs"
26+
gh_edit_branch: "main"
27+
gh_edit_source: docs
28+
gh_edit_view_mode: "edit"
29+
2230
# Color scheme
2331
color_scheme: dark
2432

@@ -27,7 +35,7 @@ mermaid:
2735
version: "10.6.0"
2836

2937
# Logo
30-
logo: "/assets/images/logo.png"
38+
logo: "/assets/images/logo.svg"
3139

3240
# Aux links (top right)
3341
aux_links:

_includes/footer_custom.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;"> <a href="https://unraid.net/" style="display: inline-flex; align-items: center; opacity: 0.7; transition: opacity 0.2s;" title="Unraid OS">
2+
<img src="{{ '/assets/images/logos/Unraid%20Logos/UN-logotype-gradient.svg' | relative_url }}" alt="Unraid" height="24">
3+
</a>
4+
<span style="opacity: 0.5;">|</span> <a href="https://github.com/mstrhakr/unraid-plugin-docs" style="display: inline-flex; align-items: center; opacity: 0.7; transition: opacity 0.2s;">
5+
<img src="{{ '/assets/images/logos/GitHub%20Logos/GitHub_Lockup_White.svg' | relative_url }}" alt="GitHub" height="24">
6+
</a>
7+
<span style="opacity: 0.5;">|</span>
8+
<a href="https://github.com/features/copilot" style="display: inline-flex; align-items: center; opacity: 0.7; transition: opacity 0.2s;" title="Created with assistance from GitHub Copilot">
9+
<img src="{{ '/assets/images/logos/GitHub%20Logos/Copilot_Lockup_White.svg' | relative_url }}" alt="GitHub Copilot" height="20">
10+
</a>
11+
</div>

_sass/custom/custom.scss

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,156 @@ table {
6464
}
6565
}
6666

67+
// ============================================
68+
// Unraid Branding Styles
69+
// ============================================
70+
71+
// Unraid brand colors
72+
$unraid-orange: #e64a19;
73+
$unraid-orange-light: #ff7d47;
74+
$unraid-orange-dark: #ac0800;
75+
76+
// Unraid logo utilities
77+
.unraid-logo {
78+
height: 32px;
79+
vertical-align: middle;
80+
margin-right: 0.5rem;
81+
transition: opacity 0.2s ease;
82+
83+
&:hover {
84+
opacity: 0.8;
85+
}
86+
}
87+
88+
.unraid-logo-small {
89+
height: 20px;
90+
vertical-align: middle;
91+
margin-right: 0.25rem;
92+
}
93+
94+
.unraid-logo-large {
95+
height: 60px;
96+
margin-bottom: 1rem;
97+
}
98+
99+
.unraid-logo-hero {
100+
height: 80px;
101+
display: block;
102+
margin: 0 auto 1.5rem;
103+
}
104+
105+
// Unraid mark (icon only)
106+
.unraid-mark {
107+
height: 24px;
108+
vertical-align: middle;
109+
}
110+
111+
.unraid-mark-small {
112+
height: 16px;
113+
vertical-align: middle;
114+
}
115+
116+
// Unraid button styling
117+
.unraid-button {
118+
display: inline-flex;
119+
align-items: center;
120+
padding: 0.5rem 1rem;
121+
background: linear-gradient(135deg, $unraid-orange 0%, $unraid-orange-dark 100%);
122+
color: #fff;
123+
border-radius: 6px;
124+
text-decoration: none;
125+
font-weight: 500;
126+
transition: all 0.2s ease;
127+
128+
&:hover {
129+
background: linear-gradient(135deg, $unraid-orange-light 0%, $unraid-orange 100%);
130+
color: #fff;
131+
text-decoration: none;
132+
transform: translateY(-1px);
133+
box-shadow: 0 4px 12px rgba($unraid-orange, 0.3);
134+
}
135+
136+
img {
137+
height: 20px;
138+
margin-right: 0.5rem;
139+
}
140+
}
141+
142+
// Inline Unraid reference styling
143+
.unraid-inline {
144+
display: inline-flex;
145+
align-items: center;
146+
147+
img {
148+
height: 16px;
149+
margin-right: 0.25rem;
150+
vertical-align: middle;
151+
}
152+
}
153+
154+
// ============================================
155+
// GitHub Branding Styles
156+
// ============================================
157+
158+
// GitHub logo in headers - auto invert for light mode
159+
.github-logo {
160+
height: 32px;
161+
vertical-align: middle;
162+
margin-right: 0.5rem;
163+
transition: opacity 0.2s ease;
164+
165+
&:hover {
166+
opacity: 0.8;
167+
}
168+
}
169+
170+
.github-logo-small {
171+
height: 16px;
172+
vertical-align: middle;
173+
margin-right: 0.25rem;
174+
}
175+
176+
.github-logo-large {
177+
height: 48px;
178+
margin-bottom: 1rem;
179+
}
180+
181+
// GitHub button styling
182+
.github-button {
183+
display: inline-flex;
184+
align-items: center;
185+
padding: 0.5rem 1rem;
186+
background: #24292e;
187+
color: #fff;
188+
border-radius: 6px;
189+
text-decoration: none;
190+
font-weight: 500;
191+
transition: background 0.2s ease;
192+
193+
&:hover {
194+
background: #2f363d;
195+
color: #fff;
196+
text-decoration: none;
197+
}
198+
199+
img {
200+
height: 20px;
201+
margin-right: 0.5rem;
202+
}
203+
}
204+
205+
// Inline GitHub reference styling
206+
.github-inline {
207+
display: inline-flex;
208+
align-items: center;
209+
210+
img {
211+
height: 16px;
212+
margin-right: 0.25rem;
213+
vertical-align: middle;
214+
}
215+
}
216+
67217
// ============================================
68218
// Screenshot Crop Utilities
69219
// ============================================

assets/images/logo.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 17 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 17 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)