Skip to content
Merged
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
70 changes: 70 additions & 0 deletions pages/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,76 @@ nav.v-pagination ul {
} */
}

.hc-block-gray {
box-shadow: inset 0px 3px 10px rgba(0, 0, 0, 0.2);
color: #ededed;
max-width: 100%;
width: 100vw;
min-height: 100px;
line-height: 1.2;
}

.hc-new-section {
padding: 10px 10px;
background: #ededed;
}

.hc-new-title {
font-size: 2.5rem;
font-weight: 700;
color: #000000;
text-align: center;
max-width: 900px;
margin: 0 auto 30px;
line-height: 1.3;
}

.hc-new-title-left {
font-size: 2.5rem;
font-weight: 700;
color: #000000;
text-align: left;
max-width: 900px;
margin: 0 auto 30px;
line-height: 1.3;
}

.hc-new-subtitle {
font-size: 1.2rem;
font-weight: 400;
color: #555;
text-align: center;
margin: 0 auto 10px;
line-height: 1.6;
}

.hc-new-subtitle-left {
font-size: 1.2rem;
font-weight: 400;
color: #555;
text-align: left;
margin: 0 auto 10px;
line-height: 1.6;
}

.hc-new-subsection-text {
color: rgb(0, 0, 0);
text-align: left;
align-items: center;
justify-content: center;
flex-direction: column;
padding-bottom: 32px;
line-height: 1.5;
font-size: min(1.1em, calc(10px + 2vw));
}

/* Spacing for front-page button */
.hc-cta {
text-align: center;
margin-top: 40px;
margin-bottom: -10px;
}

@media (min-width: 720px) {
.hc-column {
width: 33%;
Expand Down
36 changes: 36 additions & 0 deletions pages/en/workbench/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: Workbench
sidebar: false
layout: page
contact: https://docs.hdc.ntnu.no/about/contact/
---

<div class="hc-home-page">
<div class="hc-block-gray" style="display: none;"></div>

<div class="hc-block-gray">
<div class="hc-block-container">
<v-row>
<div class="hc-new-title-left">
Workbench
</div>
<div class="hc-new-subsection-text">
Enjoy a regular desktop, as well as a web-based interactive access to modern data science tools in HUNT Cloud Workbench. Adjust the computational resources and tools in accordance with your needs.
</div>
</v-row>
</div>
</div>

<!----------------------------------------------->
<!-- Block: About HUNT Cloud -->
<!----------------------------------------------->

<FooterBlock :contact="$frontmatter.contact" />

</div>

<style scoped>

/* CSS scoped specifically to this page */

</style>
Loading