-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac12354
commit d6e7176
Showing
3 changed files
with
90 additions
and
88 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 |
---|---|---|
@@ -1,23 +1,16 @@ | ||
remote_theme: pages-themes/[email protected] | ||
plugins: | ||
- jekyll-remote-theme | ||
|
||
# _config.yml | ||
title: aVenture Documentation | ||
description: Documentation for the aVenture VC research database | ||
logo: /images/logos/aventure_logo_1280x640_transparent.png | ||
show_downloads: false | ||
description: Documentation for aVenture, a private venture capital research platform | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "https://aventurevc.github.io" # the base hostname & protocol for your site | ||
|
||
# Theme-specific settings | ||
# Build settings | ||
markdown: kramdown | ||
kramdown: | ||
input: GFM | ||
syntax_highlighter: rouge | ||
|
||
# GitHub metadata | ||
github: | ||
is_project_page: false | ||
theme: minima | ||
plugins: | ||
- jekyll-feed | ||
|
||
# Exclude files from processing | ||
# Exclude from processing | ||
exclude: | ||
- Gemfile | ||
- Gemfile.lock | ||
|
@@ -26,3 +19,8 @@ exclude: | |
- vendor/cache/ | ||
- vendor/gems/ | ||
- vendor/ruby/ | ||
|
||
# Custom SASS | ||
sass: | ||
sass_dir: _sass | ||
style: compressed |
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
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,68 @@ | ||
--- | ||
--- | ||
|
||
body { | ||
font-family: 'Arial', sans-serif; | ||
line-height: 1.6; | ||
color: #333; | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #f4f4f4; | ||
} | ||
|
||
header { | ||
text-align: center; | ||
margin-bottom: 40px; | ||
} | ||
|
||
.logo { | ||
max-width: 300px; | ||
height: auto; | ||
} | ||
|
||
h1 { | ||
color: #2c3e50; | ||
margin-top: 20px; | ||
} | ||
|
||
p { | ||
margin-bottom: 20px; | ||
} | ||
|
||
.quick-links { | ||
background-color: #fff; | ||
border-radius: 8px; | ||
padding: 20px; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.quick-links h2 { | ||
color: #2c3e50; | ||
margin-top: 0; | ||
} | ||
|
||
.quick-links ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.quick-links li { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.quick-links a { | ||
color: #3498db; | ||
text-decoration: none; | ||
transition: color 0.3s ease; | ||
} | ||
|
||
.quick-links a:hover { | ||
color: #2980b9; | ||
} | ||
|
||
footer { | ||
margin-top: 40px; | ||
text-align: center; | ||
color: #7f8c8d; | ||
} |