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
12 changes: 12 additions & 0 deletions _includes/denbi_survey.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% comment %}
Call-to-action for the mandatory de.NBI user survey (de.NBI Service Guidelines).
The survey link is specific to the SeqAn service within the CIBI center.
{% endcomment %}
<aside class="denbi-survey">
<p class="denbi-survey-text">
This is an approved <a href="https://www.denbi.de/">de.NBI</a> service.
Please help us improve by taking our short user survey.
</p>
<a class="button button-lightgray denbi-survey-button"
href="https://www.surveymonkey.de/r/denbi-service?sc=cibi&amp;tool=seqan">Take the survey</a>
</aside>
2 changes: 2 additions & 0 deletions _pages/06_contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ Algorithmische Bioinformatik
* Phone: +49 (0)30 838-75237
* Email: [support@seqan.de](mailto:support@seqan.de)
* Web: [www.seqan.de](https://www.seqan.de)

{% include denbi_survey.html %}
2 changes: 2 additions & 0 deletions _pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ developer and user meetings and providing online training materials.
Learn more about the [CIBI](https://www.denbi.de/network/center-for-integrative-bioinformatics-cibi) center and its
[portfolio](https://www.denbi.de/network/center-for-integrative-bioinformatics-cibi/21-about/508-portfolio-of-center-for-integrative-bioinformatics-cibi)
to find the best solution for your data and your type of project.

{% include denbi_survey.html %}
30 changes: 30 additions & 0 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,36 @@ main {
display: block;
}

// ====== de.NBI Survey ======
.denbi-survey {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-between;
gap: #{$spacing-unit * .5};

box-sizing: border-box;
margin-bottom: $spacing-unit;
padding: #{$spacing-unit * .5};
border: 1px solid $border-color-01;
border-left: 4px solid $seqan-color;
}
.denbi-survey-text {
flex: 1 1 260px;
margin-bottom: 0;
}
.denbi-survey-button {
flex: 0 0 auto;
white-space: nowrap;
}

@include media-query($on-palm) {
.denbi-survey-button {
width: 100%;
box-sizing: border-box;
}
}

// ====== Heading ======
.heading-entries {
display: flex;
Expand Down