-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some styling to documentation site
- Loading branch information
Showing
3 changed files
with
229 additions
and
145 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
title: Spawn | ||
description: >- # Markdown support is enabled | ||
A Actor based Service Mesh runtime. | ||
# Build settings | ||
markdown: kramdown | ||
theme: minima # Default theme, or you can specify another one | ||
|
||
# Custom CSS | ||
sass: | ||
style: compressed | ||
|
||
# Include your custom CSS file | ||
defaults: | ||
- scope: | ||
path: "" | ||
type: "page" | ||
values: | ||
layout: "default" | ||
|
||
# Add links to your custom CSS | ||
include: | ||
- assets/css/style.css | ||
|
||
# Plugins (if any) | ||
plugins: | ||
- jekyll-feed |
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,27 @@ | ||
.styled-table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
font-size: 16px; | ||
text-align: left; | ||
margin: 25px 0; | ||
background-color: #f9f9f9; | ||
} | ||
|
||
.styled-table thead tr { | ||
background-color: #009879; | ||
color: #ffffff; | ||
} | ||
|
||
.styled-table th, | ||
.styled-table td { | ||
border: 1px solid #dddddd; | ||
padding: 12px 15px; | ||
} | ||
|
||
.styled-table tbody tr { | ||
border-bottom: 1px solid #dddddd; | ||
} | ||
|
||
.styled-table tbody tr:hover { | ||
background-color: #f1f1f1; | ||
} |
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