Skip to content

Commit

Permalink
Created basic css template.
Browse files Browse the repository at this point in the history
* References

Working on issue #67

SAFETAG/SAFETAG#67
  • Loading branch information
Seamus Tuohy committed Dec 17, 2014
1 parent de35a2b commit 2e86e76
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/style_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@ for sidebars
##### Additional Material {.orange_sidebar}


```
<span class=confidential>
red dashed outline surrounds this text.
This is for any confidential information in a report that an organization should not share.
</span>
```

<span class=confidential>
ANY TEXT
</span>



# Color Scheme

Expand Down
71 changes: 71 additions & 0 deletions theme/core.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

/* Colors */

h1,
h2,
h3 {
text-transform: uppercase;
color: #404965;
}

h4 {
color: #60A144;
}

.h5 {
color: #000000;
}

.orange_sub {
color: #DE5D5A;
}


.confidential {
border-style: dashed;
border-color: red;
border-width: 3px;
}

/*
line above and below
running people icon to the left
float right of the icon
*/
.activity {}

/*
line above and below
speech bubbles icon to the left
float right of the icon
*/
.discussion {}

/*
line above and below
person icon to the left
float right of the icon
*/
.input {}

/*
line above and below
magnefying glass icon to the left
float right of the icon
*/
.deepening {}

/*
line above and below
puzzle icon to the left
float right of the icon
*/
.synthesis {}

/*
line above and below
pencil icon to the left
float right of the icon
*/
.handout {}

0 comments on commit 2e86e76

Please sign in to comment.