Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Calcote <[email protected]>
  • Loading branch information
leecalcote committed Oct 28, 2023
1 parent 86d0949 commit ac00637
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 243 deletions.
60 changes: 59 additions & 1 deletion assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,43 @@
color: $casper;
}
}
// Code formatting.

.td-content {
// Inline code
p code,
li > code,
table code {
color: inherit;
padding: 0.2em 0.4em;
margin: 0;
font-size: 85%;
word-break: normal;
background-color: rgba($black, 0.05);
border-radius: $border-radius;

br {
display: none;
}
}

// Code blocks
pre {
word-wrap: normal;
background-color: $gray-900;
padding: $spacer;

> code {
background-color: inherit !important;
padding: 0;
margin: 0;
font-size: 100%;
word-break: normal;
white-space: pre;
border: 0;
}
}
}

// Links

Expand Down Expand Up @@ -101,4 +138,25 @@ a:not([href]):not([class]), a:not([href]):not([class]):hover {
.pageinfo {
font-weight: $font-weight-medium;
background: $gray-900;
}
}

// Style alert boxes.

.alert {
font-weight: $font-weight-medium;
background: $gray-900;
color: inherit;
border-radius: 0;

@each $color, $value in $theme-colors {
&-#{$color} {
& .alert-heading {
color: $value;
}
background-color: $gray-900;
border-style: solid;
border-color: $value;
border-width: 0 0 0 4px;
}
}
}
2 changes: 1 addition & 1 deletion content/en/Cloud/Concepts/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Concepts
weight: 4
weight: 2
description: >
What does your user need to understand about your project in order to use it - or potentially contribute to it?
---
Expand Down
3 changes: 1 addition & 2 deletions content/en/Cloud/Getting started/_index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
---
title: Getting Started
description: What does your user need to know to try your project?
categories: [Examples, Placeholders]
tags: [test, docs]


---

Expand Down
2 changes: 1 addition & 1 deletion content/en/Cloud/Identity/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Identity
description: >
Organizations, Teams, Users
date: 2017-01-05
weight: 1
weight: 3
---

{{% pageinfo %}}
Expand Down
2 changes: 2 additions & 0 deletions content/en/Cloud/Overview/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: Overview
description: Here's where your user finds out if your project is for them.
weight: 1
categories: [Examples, Placeholders]
tags: [test, docs]
---

{{% pageinfo %}}
Expand Down
2 changes: 1 addition & 1 deletion content/en/Cloud/Security/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Security
description: What can your user do with your project?
date: 2017-01-05
weight: 2
weight: 4
---

{{% pageinfo %}}
Expand Down
237 changes: 0 additions & 237 deletions content/en/Cloud/Tasks/task.md

This file was deleted.

0 comments on commit ac00637

Please sign in to comment.