Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Hugo-generated assets
public/
resources/
.hugo_build.lock
/public
/resources

# npm assets
node_modules/
package-lock.json
yarn.lock

# Local scratch folder
tmp/

# macOS
.DS_Store

# Misc
scripts/collector.yaml
assets/jsconfig.json
/.netlify

# VS Code
/.vscode
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/docsy"]
path = themes/docsy
url = https://github.com/google/docsy.git
File renamed without changes.
1 change: 1 addition & 0 deletions assets/icons/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/tuf-white-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 0 additions & 16 deletions assets/js/app.js

This file was deleted.

65 changes: 0 additions & 65 deletions assets/sass/helpers.sass

This file was deleted.

128 changes: 0 additions & 128 deletions assets/sass/style.sass

This file was deleted.

52 changes: 52 additions & 0 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
@import 'td/code-dark';

.td-navbar {
.navbar-brand {
svg {
height: 38px;
}
.navbar-brand__name {
display: none;
}
}
}

.td-home {
.cncf {
text-align: center;

p {
font-size: 1.2rem;
margin-bottom: 0;
}

img {
width: 20rem;
padding-top: 1rem;
max-width: 80%;
}
}
}

.adoptions-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
margin-bottom: -3rem;
}

.adoptions-logo {
max-height: 4rem;
max-width: 100%;
}

.adoptions-item {
margin-left: auto;
margin-right: auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
padding-bottom: 3rem;
}

$tuf-blue: #0082ca;
1 change: 1 addition & 0 deletions assets/scss/_variables_project.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* Add styles or override variables from the theme here. */
Loading