summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/ci/generic/typography.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/ci/generic/typography.scss')
-rw-r--r--app/assets/stylesheets/ci/generic/typography.scss63
1 files changed, 63 insertions, 0 deletions
diff --git a/app/assets/stylesheets/ci/generic/typography.scss b/app/assets/stylesheets/ci/generic/typography.scss
new file mode 100644
index 00000000000..b9ed23b9d3a
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/typography.scss
@@ -0,0 +1,63 @@
+h6 {
+ color: #888;
+ text-transform: uppercase;
+}
+
+pre {
+ font-family: $monospace_font;
+
+ &.dark {
+ background: #333;
+ color: #f5f5f5;
+ }
+}
+
+/**
+ * Links
+ *
+ */
+a {
+ outline: none;
+ color: $link_color;
+ &:hover {
+ text-decoration: none;
+ color: $primary_color;
+ }
+
+ &:focus {
+ text-decoration: underline;
+ }
+
+ &.dark {
+ color: $style_color;
+ }
+
+ &.lined {
+ text-decoration: underline;
+ &:hover { text-decoration: underline; }
+ }
+
+ &.gray {
+ color: gray;
+ }
+
+ &.supp_diff_link {
+ text-align: center;
+ padding: 20px 0;
+ background: #f1f1f1;
+ width: 100%;
+ float: left;
+ }
+
+ &.neib {
+ margin-right: 15px;
+ }
+}
+
+a:focus {
+ outline: none;
+}
+
+.monospace {
+ font-family: $monospace_font;
+}