-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add first single components to overview component
Signed-off-by: maxwolfs <[email protected]>
- Loading branch information
Showing
8 changed files
with
202 additions
and
80 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
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
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,11 +1,20 @@ | ||
.gradient { | ||
background: linear-gradient( | ||
180deg, | ||
#0061ff 0%, | ||
rgba(80, 195, 165, 0) 50%, | ||
#50c3a5 100% | ||
rgb(0, 97, 255, 0.2) 20%, | ||
rgba(80, 195, 165, 10) 50%, | ||
#50c3a5 80% | ||
); | ||
border-radius: 16px; | ||
margin: 16px; | ||
padding: 16px; | ||
margin: 4px; | ||
} | ||
|
||
.border { | ||
border: rgba(0, 97, 255, 1) solid 4px; | ||
border-radius: 16px; | ||
margin: 4px; | ||
} | ||
|
||
.bottom { | ||
margin-bottom: 16px; | ||
} |
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
This file was deleted.
Oops, something went wrong.
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,62 @@ | ||
{ | ||
"ops": [ | ||
{ | ||
"title": "Ops Layer", | ||
"body": "Tooling and infrastructure design for easy, efficient and transparent ways to operate an SCS Cloud.", | ||
"url": "/docs/category/operating-scs", | ||
"buttonText": "Learn More", | ||
"components": [ | ||
{ | ||
"title": "Status Page API", | ||
"url": "/docs/operating-scs/components/status-page/docs/overview" | ||
} | ||
] | ||
} | ||
], | ||
"container": [ | ||
{ | ||
"title": "Container Layer", | ||
"body": "SCS offers a robust solution for managing container workloads on a Kubernetes infrastructure.", | ||
"url": "/docs/container", | ||
"buttonText": "Learn More", | ||
"components": [ | ||
{ | ||
"title": "k8s Cluster API Provider", | ||
"url": "/docs/category/k8s-cluster-api-provider" | ||
} | ||
] | ||
} | ||
], | ||
"iaas": [ | ||
{ | ||
"title": "IaaS Layer", | ||
"body": "SCS offers OpenStack infrastructure solutions based on KVM virutalization to deploy VM workloads and enabling the container layer optionally.", | ||
"url": "/docs/faq", | ||
"buttonText": "Learn More", | ||
"components": [ | ||
{ | ||
"title": "Image Manager", | ||
"url": "/docs/iaas/components/image-manager" | ||
}, | ||
{ | ||
"title": "Flavor Manager", | ||
"url": "/docs/iaas/components/flavor-manager" | ||
} | ||
] | ||
} | ||
], | ||
"iam": [ | ||
{ | ||
"title": "IAM Layer", | ||
"body": "Working on Keycloak federated identity provider within our Team IAM.", | ||
"url": "/docs/iam", | ||
"buttonText": "Learn More", | ||
"components": [ | ||
{ | ||
"title": "Status Page API", | ||
"url": "/docs/category/status-page-api" | ||
} | ||
] | ||
} | ||
] | ||
} |