npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lv-common-css

v1.3.4

Published

Some common classes extracted from my daily projects.

Downloads

14

Readme

common-css

一、Introduction

收纳了平时项目中常用到的css。

1、dist/style/main.css

该文件包含了pc和mobile所有的样式,是两者的集合。 但通常不需要用到main.css,我们只需要根据业务运行的设备选择pc或者mobile中的一个即可。 如果使用如下代码引入,则其实引入的就是main.css文件,因为package.json中指定了入口文件是main.css。

//指向的是dist/style/main.css
import 'lv-common-css';

是不是感觉有点坑?哈哈。但确实也是没办法,因为不管入口指向pc或者mobile都不太合适!见谅!!!

2、dist/style/pc.css

pc端常用的css。

3、dist/style/mobile.css

移动端常用的css。

4、dist/style/common/font.css

此文件中包含的是一些对字体的定义,如font12(font-size:12px)、font1rem(font-size:1rem)、bold(字体加粗)、italic(斜体)等等。

5、dist/style/common/box.css

此文件中包含的是关于盒子模型以及弹性盒子模型的css。

6、dist/style/common/color.css

此文件中包含的是关于字体颜色、背景色的css。

7、dist/style/common/init.css

清除一些浏览器默认样式,通常作为页面初始化使用。

二、Usage

1、下载

npm install lv-common-css --save

2、引入

// 方法一:支持es6语法的开发环境
import 'lv-common-css';     //main.css
import 'lv-common-css/dist/style/pc.css';     //pc.css
import 'lv-common-css/dist/style/mobile.css';     //mobile.css

// 方法二:使用link标签引入
<link rel="stylesheet" href="node_modules/lv-common-css/dist/style/pc.css">
<link rel="stylesheet" href="node_modules/lv-common-css/dist/style/mobile.css">
<link rel="stylesheet" href="node_modules/lv-common-css/dist/style/main.css">   //基本用不到