Fix markdown styling

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-12-13 14:20:46 +01:00
parent 9b0c053e91
commit cb5393aefe
4 changed files with 61 additions and 9 deletions
+7 -7
View File
@@ -283,14 +283,14 @@ long as they adhere to the contract established by an
implementation they want.
The figure below shows the relationship between
<span style="color: #82b366">different Apps</span>, that provide
<span style="color: #6c8ebf">different implementations</span> of the
<span style="color: #9673a6">FooApi</span>.
<span style="color: #d6b656">Components</span> within Plugins then access the
<span style="color: #9673a6">FooApi</span> via the
<span style="color: #b85450">fooApiRef</span>.
<span class="textGreen" className="textGreen">different Apps</span>, that provide
<span class="textBlue" className="textBlue"> different implementations</span> of the
<span class="textPurple" className="textPurple"> FooApi</span>.
<span class="textYellow" className="textYellow"> Components</span> within Plugins then access the
<span class="textPurple" className="textPurple"> FooApi</span> via the
<span class="textRed" className="textRed"> fooApiRef</span>.
<div style="text-align:center">
<div className="textAlignCenter" class="textAlignCenter">
<img src="../assets/utility-apis-fig1.svg" alt="Figure showing the relationship between utility APIs, the apps that provide them, and the plugins that consume them" />
</div>
+2 -2
View File
@@ -21,7 +21,7 @@ The assets below are all in `.svg` format. Other formats are available in the
</a>
<a href="https://backstage.io/logo_assets/svg/Logo_Black.svg">
<img src="https://backstage.io/logo_assets/svg/Logo_Black.svg" width="600" style="background-color:white" />
<img src="https://backstage.io/logo_assets/svg/Logo_Black.svg" width="600" className="logoWhite" class="logoWhite" />
</a>
## Backstage icon
@@ -37,6 +37,6 @@ The assets below are all in `.svg` format. Other formats are available in the
<img src="https://backstage.io/logo_assets/svg/Icon_Gradient.svg" width="180" height="180" />
</a>
<a href="https://backstage.io/logo_assets/svg/Icon_Black.svg">
<img src="https://backstage.io/logo_assets/svg/Icon_Black.svg" width="180" height="180" style="background-color:white" />
<img src="https://backstage.io/logo_assets/svg/Icon_Black.svg" width="180" height="180" style={{"background-color":"white"}} />
</a>
</div>
+26
View File
@@ -19,3 +19,29 @@
.copyright {
font-size: 10pt;
}
/* logo.md */
.logoWhite {
background-color: white;
}
/* Utility API Styling */
.textGreen {
color: #82b366;
}
.textBlue {
color: #6c8ebf;
}
.textPurple {
color: #9673a6;
}
.textYellow {
color: #d6b656;
}
.textRed {
color: #b85450;
}
.textAlignCenter {
text-align: center;
}
/* End of Utility API Styling */
+26
View File
@@ -1294,3 +1294,29 @@ h3.collapsible span.arrow {
#Sidebar__HubSpotContainer.submitted-message p {
color: rgb(0, 0, 0);
}
/* logo.md */
.logoWhite {
background-color: white;
}
/* Utility API Styling */
.textGreen {
color: #82b366;
}
.textBlue {
color: #6c8ebf;
}
.textPurple {
color: #9673a6;
}
.textYellow {
color: #d6b656;
}
.textRed {
color: #b85450;
}
.textAlignCenter {
text-align: center;
}
/* End of Utility API Styling */