It appears that there's new CSS fonts on the Google Fonts API for the new Material Icon variants.
A Pen by Edric Chan on CodePen.
/*This file shows the capabilities of if-then commands*/ | |
import java.util.Scanner; //Imports java.util.Scanner | |
public class GradeCheck { | |
private static Scanner mathNumber; | |
private static Scanner engNumber; | |
private static Scanner sciNumber; | |
public static void main(String[] args) { | |
int OverallScore, OverallGrade; //Sets OverallScore and OverallGrade |
It appears that there's new CSS fonts on the Google Fonts API for the new Material Icon variants.
A Pen by Edric Chan on CodePen.
// This file is used for generating styles for Angular Material | |
/// An array of values | |
/// @author Edric Chan | |
$mat-colors: ( | |
"red": $mat-red, | |
"pink": $mat-pink, | |
"purple": $mat-purple, | |
"deep-purple": $mat-deep-purple, | |
"indigo": $mat-indigo, |
edricchan@Edrics-Macbook-Pro:~/Desktop/Projects/rss-reader/rss-reader-web$ ng update @angular/material | |
Updating package.json with dependency @angular/cdk @ "6.0.1" (was "6.0.0-beta.4-c28549d")... | |
Updating package.json with dependency @angular/material @ "6.0.1" (was "6.0.0-beta.4-c28549d")... | |
UPDATE package.json (2247 bytes) | |
removed 9 packages and updated 2 packages in 21.183s | |
[!] 80 vulnerabilities found [25292 packages audited] | |
Severity: 36 Low | 23 Moderate | 21 High | |
Run `npm audit` for more detail | |
CREATE angular_material_schematics-YOsO24/collection.json (1251 bytes) |
(Full description and list of commands at - https://npmjs.org/doc/index.html)
Make sure to export your local $PATH and prepand relative ./node_modules/.bin/:
<html> | |
<head> | |
<title>Template for Angular Material</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-animate.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-aria.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-messages.min.js"></script> | |
<!--NOTE: Since Google hasn't served versions past v1.1.1, I will use https://cdnjs.com--> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-material/1.1.4/angular-material.min.js"></script> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/angular-material/1.1.4/angular-material.min.css" rel="stylesheet" /> |
// angular.module('BlankApp', ['dependency1', 'app.directive']) | |
/** | |
* | |
* Note that you can import controllers too! | |
* Example: | |
* angular.module('dependencies', []). | |
* controller( | |
* ... | |
* ) | |
* angular.module('TestApp', ['dependencies', 'ngMessages', ...]). |
<html lang="en" dir="ltr"> | |
<head> | |
<!-- | |
Add stuff you want to import | |
Below is the syntax for CSS files. | |
E.x. <link rel="stylesheet" href="main.css"> | |
--> | |
<link rel="stylesheet" href="sample-css.css"> | |
<!-- | |
Favicon |