Skip to content

This example show how you can add custom fonts inside UI app in Avid MediaCentral | Cloud UX.

Notifications You must be signed in to change notification settings

avid-technology/custom-font-ui-example

Repository files navigation

Example for adding custom fonts into UI app

This example show how you can add custom fonts inside UI app in Avid MediaCentral | Cloud UX.

⚠️ Disclaimer: Customizing app title font is not supported!

This example is built using Avid cloudux-starter-kit v. 2.1.13 cloudux-starter-kit. Please follow the Quick Start and UI Plugins to get up to speed on how to use the example below.

Prerequisites

To run this application you will need following things:

  1. running MediaCentral | Cloud UX machine
  2. node.js and npm

How to run example

  1. Before running

Configure package.json file:

"alias": "your-avid-app-id",
"secret": "your-app-secret-from-myavid-com"

Configure connection in project.config.json:

"connection": {
    "hostIp": "your-mediacentral-cloudux-machine-address",
	"hostPort": "",
	"proxyPort": "443"
}

From plugin folder in cli type:

npm install
npm start

Go to https://localhost/ in browser to see the app.

Structure of the plugin

Specify your custom font inside /src/app/font.sass with @font-face CSS at-rule:

@font-face 
    font-family: 'CaviarDreams'
    src: url('../fonts/CaviarDreams.ttf') format('truetype')
    src: url('../fonts/CaviarDreams.woff') format('woff')

Apply the font to the text inside src/app/index.scss:

.test {
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    font-family: "CaviarDreams";
}

How to use CloudUX plugin

Appearance of the plugin:

font-app

About

This example show how you can add custom fonts inside UI app in Avid MediaCentral | Cloud UX.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published