Skip to content

Commit

Permalink
Merge e1efab9 into fbfd181
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Wilaby committed Oct 18, 2018
2 parents fbfd181 + e1efab9 commit 272aaea
Show file tree
Hide file tree
Showing 10 changed files with 96 additions and 64 deletions.
96 changes: 48 additions & 48 deletions package-lock.json

Large diffs are not rendered by default.

Expand Up @@ -30,7 +30,7 @@
border: 1px solid transparent;
color: var(--focused-selected-list-item-bg);
cursor: pointer;
font-family: var(--default-font-semibold);
font-weight: 600;
padding: 0;
white-space: normal;
text-decoration: none;
Expand Down
Expand Up @@ -13,7 +13,7 @@
border: 1px solid transparent;
color: var(--focused-selected-list-item-bg);
cursor: pointer;
font-family: var(--default-font-semibold);
font-weight: 600;
white-space: normal;
text-decoration: none;

Expand Down
11 changes: 7 additions & 4 deletions packages/app/client/src/ui/editor/welcomePage/welcomePage.scss
Expand Up @@ -75,7 +75,9 @@
position: relative;
padding: 0 16px;
border: 1px solid transparent;

button {
font-size: 13px;
}
&:hover {
background-color: var(--my-bots-entry-bg);
border: var(--my-bots-entry-border);
Expand All @@ -92,7 +94,7 @@
cursor: pointer;

> span {
font-family: var(--default-font-semibold);
font-weight: 600;

&:hover {
text-decoration: underline;
Expand Down Expand Up @@ -156,8 +158,9 @@
border: 1px solid transparent;
color: var(--focused-selected-list-item-bg);
cursor: pointer;
font-family: var(--default-font-semibold);
font-weight: 600;
padding: 0;
font-size: 13px;
white-space: normal;

&:focus {
Expand All @@ -173,7 +176,7 @@
.how-to-build-section {
> h3 {
font-size: 13px;
font-family: var(--default-font-semibold);
font-weight: 600;
letter-spacing: 0.35px;
line-height: 16px;
margin: 0 0 24px 0;
Expand Down
Expand Up @@ -32,7 +32,7 @@ ul > li.link::before {
border: 1px solid transparent;
color: var(--focused-selected-list-item-bg);
cursor: pointer;
font-family: var(--default-font-semibold);
font-weight: 600;
padding: 0;
text-decoration: none;
white-space: normal;
Expand Down
46 changes: 38 additions & 8 deletions packages/app/client/src/ui/styles/globals.scss
@@ -1,15 +1,33 @@
@font-face {
font-family: Segoe UI;
font-weight: 300;
src: url("./segoe-ui.woff2") format("woff2");
font-weight: bold;
src: url("./segoe-ui-bold.woff2") format("woff2");
}

@font-face {
font-family: Segoe UI Semibold;
font-weight: 500;
font-family: Segoe UI;
font-weight: 600;
src: url("./segoe-ui-semibold.woff2") format("woff2");
}

@font-face {
font-family: Segoe UI;
font-weight: 400;
src: url("./segoe-ui.woff2") format("woff2");
}

@font-face {
font-family: Segoe UI;
font-weight: 300;
src: url("./segoe-ui-semilight.woff2") format("woff2");
}

@font-face {
font-family: Segoe UI;
font-weight: 200;
src: url("./segoe-ui-light.woff2") format("woff2");
}

@font-face {
font-family: Menlo;
src: url("./menlo.woff2") format("woff2");
Expand All @@ -31,12 +49,24 @@
overflow: hidden;
user-select: none;
}
div {
box-sizing: border-box;

h1, h2 {
font-family: var(--default-font-family);
font-weight: 200;
}

h3 {
font-family: var(--default-font-family);
font-weight: 600;
}

strong {
font-family: var(--default-font-semibold);
input, textarea, button, select {
font-family: var(--default-font-family);
font-weight: normal;
}

div {
box-sizing: border-box;
}

*:focus {
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion packages/app/client/src/ui/styles/themes/fonts.css
@@ -1,5 +1,4 @@
html {
--default-font-family: Segoe UI, HelveticaNeue-Light, Ubuntu, Droid Sans, sans-serif;
--default-font-semibold: Segoe UI Semibold;
--monospace-font-family: Menlo, Monaco, Consolas, Droid Sans Mono, Courier New, monospace, Droid Sans Fallback;
}

0 comments on commit 272aaea

Please sign in to comment.