-
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
855d703
commit e88f431
Showing
7 changed files
with
258 additions
and
139 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 |
---|---|---|
|
@@ -58,4 +58,5 @@ themes/minimo | |
|
||
# Certain content files | ||
content/**/*.html | ||
!content/find-your-dwc/* | ||
|
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,10 @@ | ||
<div class="form-box-container"> | ||
<div class="form-box-color-agg"> | ||
<p class="form-box-stitle">DNA derived data extensions</p> | ||
</div> | ||
<div class="form-box-gray"> | ||
<p class="form-box-title">You have DNA derived data</p> | ||
<p>This genetic data may come from a sampling event, an individual organism, may be linked to physical material (or not), or may result from DNA detection methods e.g., metabarcoding or qPCR. Thus genetic data may reflect a single organism, or may include information from bulk samples with many individuals. Still, DNA-derived occurrence data of species should be documented as standardized and as reproducible as possible.</p> | ||
<p>You can learn more about that <a href="https://manual-dev.obis.org/dna_data.html">here</a></p> | ||
</div> | ||
</div> |
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,97 @@ | ||
.form-para { | ||
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; | ||
font-weight: 700; | ||
line-height: 1.2; | ||
color: #0076b1; | ||
} | ||
.form-prev { | ||
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; | ||
font-size: 1em; | ||
line-height: 1; | ||
margin-top: 0px; | ||
font-style: italic; | ||
color: #C8C8C8; | ||
} | ||
.form-explanation { | ||
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; | ||
font-size: 1em; | ||
line-height: 1; | ||
margin-top: 0px; | ||
color: #C8C8C8; | ||
} | ||
.form-box-stitle { | ||
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; | ||
font-weight: 700; | ||
font-size: 1.5em; | ||
line-height: 1.2; | ||
color: #FFFFFF; | ||
} | ||
.form-box-title { | ||
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; | ||
font-weight: 700; | ||
line-height: 1; | ||
color: #0076b1; | ||
} | ||
.form-box-other { | ||
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif; | ||
font-weight: 700; | ||
line-height: 1; | ||
margin-top: 18px; | ||
font-size: 1.2em; | ||
color: #949494; | ||
} | ||
.form-box-container { | ||
display: flex; | ||
} | ||
.form-box-color { | ||
border-radius: 5px; | ||
background: linear-gradient(90deg, #0076B1 0%, #04A3F2 100%); | ||
padding: 20px; | ||
width: 250px; | ||
height: auto; | ||
} | ||
.form-box-color-yel { | ||
border-radius: 5px; | ||
background: linear-gradient(90deg, #C88E00 0%, #FDBB1A 100%); | ||
padding: 20px; | ||
width: 250px; | ||
height: auto; | ||
} | ||
.form-box-color-agg { | ||
border-radius: 5px; | ||
background: linear-gradient(90deg, #008E6E 0%, #4EC7AC 100%); | ||
padding: 20px; | ||
width: 250px; | ||
height: auto; | ||
} | ||
.form-box-gray { | ||
border-radius: 5px; | ||
border: 1.5px solid #D6D6D6; | ||
padding: 20px; | ||
width: 100%; | ||
height: auto; | ||
margin-left: 10px; /* Magic! */ | ||
} | ||
.button,button,input[type=button],input[type=reset],input[type=submit] { | ||
width: auto; | ||
padding: .5em .75em; | ||
border: 1px solid #bdbdbd; | ||
border-radius: .2em; | ||
background: #fff; | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
color: #37474f; | ||
font-size: 1em; | ||
font-weight: 700; | ||
line-height: 1.15; | ||
text-align: center; | ||
letter-spacing: 1px; | ||
white-space: nowrap; | ||
text-transform: uppercase; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
cursor: pointer; | ||
transition: .1s ease-in-out | ||
} |
Oops, something went wrong.