Skip to content

Latest commit

 

History

History
230 lines (229 loc) · 9.08 KB

style.md

File metadata and controls

230 lines (229 loc) · 9.08 KB
title
Style


Headers

Header 1 <h1>

Header 2 <h2>

Header 3 <h3>



Paragraph

This is paragraph text.



Lists
Ordered list: <ol>
  1. List item 1
  2. List item 2
Unordered list: <ul>
  • List item 1
  • List item 2
Unordered list, no bullets, margin and line height:
<ul style="list-style: none; margin-left:0px; line-height:250%;">
  • List item 1
  • List item 2


Color Palette
Primary Palette
Black
#000000
Grey
#F5F6F6
White
#FFFFFF
Secondary Palette
Organism Blue
#3955E7
Community Green
#008558
Annotation Purple
#880BC8
Pathway Orange
#FF8120
Tertiary Palette (Hover/Disabled)
Organism Dark Blue
#1E3199
Community Dark Green
#026E55
Annotation Dark Purple
#620492
Pathway Dark Orange
#D16919
Dark Grey
#94A6A8


Buttons
  • <a class="btn btn-sm btn-pill btn-outline-warning" href="#" target="_blank">
  • <a class="btn btn-sm btn-pill btn-outline-warning" href="#">
  • <a class="btn btn-sm btn-pill btn-organism" href="#">
  • <a class="btn btn-sm btn-pill btn-community" href="#">
  • <a class="btn btn-sm btn-pill btn-annotation" href="#">
  • <a class="btn btn-sm btn-pill btn-pathway" href="#">
  • <a class="btn btn-sm btn-front" href="#">


Socials
{% include_cached share.html %}

{% include_cached share.html %}


Actions
<button class="copy-btn" to-copy="" style="border:none; background-color:#FFFFFF; padding:0px;">
 <span title="Copy link to clipboard" style="color: #666;"><i class="fa fa-link">




Tables
<table>

Col 1 Col 2 Col 3
Cell 1A Cell 2A Cell 3A
Cell 1B Cell 2B Cell 3B
Cell 1C Cell 2C Cell 3C


Pathway Card
<div class="card w-20" style="width: 10rem;">
 <a class="card-link" href="{{ pw.url }}">
  <img class="card-img-top" loading="lazy" src="">
  <div class="card-body">
   <p class="card-text">


{% assign sorted_pathways = site.pathways | sort: "last-edited" %} {% assign pw = sorted_pathways.last %}


Pathway List
<ul class="nav nav-tabs">

{% assign sorted_pathways = site.pathways | sort: "title" | slice:0, 4 %}