e7o/moments-material-bundle

此包最新版本(dev-master)没有提供许可证信息。

dev-master 2020-04-14 10:36 UTC

This package is auto-updated.

Last update: 2024-09-14 20:25:27 UTC


README

本包中的字体文件由谷歌根据Apache许可证2.0版本提供。此包仅是对它们的重新分发,包括一些特定的非谷歌CSS,以便更方便地使用。

有关指南、教程、权利等信息,请参阅 https://material.io/ 及相应的 https://fonts.google.com/specimen/Roboto

来自谷歌之外的其他内容,根据LGPLv3或更高版本授权,但只是一点CSS。

用法

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

图标(复制并粘贴以获取其他星星)

.fivestars {
	font-family: 'Material Icons';
}

.fivestars.fiveStars2::before {
	content: '\e838\e838';
}

.fivestars.fiveStars2::after {
	content: '\e839\e839\e839';
}

图标作为列表枚举

ul#your-id {
	list-style-type: none;
}

ul#your-id > li::before {
	content: '\e838';
	font-family: 'Material Icons';
	color: red;
}