summaryrefslogtreecommitdiffstats
path: root/webapp/sass/base/_typography.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/base/_typography.scss')
-rw-r--r--webapp/sass/base/_typography.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/webapp/sass/base/_typography.scss b/webapp/sass/base/_typography.scss
new file mode 100644
index 000000000..676a2c405
--- /dev/null
+++ b/webapp/sass/base/_typography.scss
@@ -0,0 +1,27 @@
+@charset 'UTF-8';
+
+b,
+strong {
+ font-weight: 600;
+}
+
+a {
+ cursor: pointer;
+ text-decoration: none;
+ word-break: break-word;
+ color: $color--primary;
+}
+
+a:focus,
+a:hover {
+ color: $color--primary--hover;
+}
+
+body {
+ font-family: 'Open Sans', sans-serif;
+ -webkit-font-smoothing: antialiased;
+}
+
+.word-break--all {
+ word-break: break-all;
+}