Verified Commit ff1f52eb authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2960583 by ressa, Anchal_gupta, andy-blum, parijke, Eli-T, shaal,...

Issue #2960583 by ressa, Anchal_gupta, andy-blum, parijke, Eli-T, shaal, markconroy, lauriii, kjay, ckrina, andrewmacpherson, mradcliffe: Include fonts in the Umami demo theme

(cherry picked from commit 1f1b26680ca79a7564c370a1b2cd8ed177a04e10)
parent 56683561
Loading
Loading
Loading
Loading
+47 −1
Original line number Diff line number Diff line
@@ -3,6 +3,52 @@
 * This is the base CSS file, for styling elements.
 */

@font-face {
  font-family: "Source Sans Pro";
  src:
    local("Source Sans Pro"),
    url("../fonts/source-sans-pro-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Source Sans Pro";
  src:
    local("Source Sans Pro"),
    url("../fonts/source-sans-pro-v21-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Source Sans Pro";
  src:
    local("Source Sans Pro"),
    url("../fonts/source-sans-pro-v21-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Source Sans Pro";
  src:
    local("Source Sans Pro"),
    url("../fonts/source-sans-pro-v21-latin-700italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Scope One";
  src:
    local("Scope One"),
    local("ScopeOne-Regular"),
    url("../fonts/scope-one-v14-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

html {
  box-sizing: border-box;
}
@@ -34,7 +80,7 @@ body {
  margin: 0;
  color: #464646;
  background: #fbf5ee;
  font-family: "Open Sans", Verdana, sans-serif;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}
+21 KiB

File added.

Preview size limit exceeded, changes collapsed.

+12.6 KiB

File added.

Preview size limit exceeded, changes collapsed.

Loading