-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display of connected users in console (#612)
- Loading branch information
1 parent
52cbc37
commit 76856b9
Showing
6 changed files
with
145 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,44 @@ | ||
// Copyright 2021 Carnegie Mellon University. All Rights Reserved. | ||
// Copyright 2023 Carnegie Mellon University. All Rights Reserved. | ||
// Released under a MIT (SEI)-style license. See LICENSE.md in the project root for license information. | ||
/* | ||
Note about src: url() and BaseHref: | ||
When using BaseHref SCSS and angular pre-processors do not like relative paths | ||
We can escape the angular pre-processors by adding `^` to the start of the URL | ||
*/ | ||
@font-face { | ||
font-family: 'open_sansregular'; | ||
src: url('^assets/fonts/opensans-regular.woff2') format('woff2'), | ||
url('^assets/fonts/opensans-regular.woff') format('woff'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'open_sansbold'; | ||
src: url('^assets/fonts/opensans-bold.woff2') format('woff2'), | ||
url('^assets/fonts/opensans-bold.woff') format('woff'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'open_sansitalic'; | ||
src: url('^assets/fonts/opensans-italic.woff2') format('woff2'), | ||
url('^assets/fonts/opensans-italic.woff') format('woff'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
body, | ||
a { | ||
font-family: 'open_sansregular'; | ||
} | ||
|
||
b { | ||
font-family: 'open_sansbold'; | ||
} | ||
|
||
i { | ||
font-family: 'open_sansitalic'; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters