New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

iceberg-bp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iceberg-bp

Front-End Boilerplate for your Web Projects

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

Iceberg logo

Iceberg

Front-End Boilerplate for your Web Projects

Iceberg is a boilerplate for start quickly your Web Projects, with the good foundation.

Author: Kevin Py
Website: http://kevinpy.com
Iceberg Website: http://kevinpy.com/Projects/Iceberg
Version: 0.2.0

Installation

You can install directly on Github, or via Bower: bower install iceberg-bp

Structure

assets
	|- css
		|- flexo.css *
		|- reset.css
		|- style.css
		|- style.less
	|- img
	|- js
		|- jquery.js
		|- less.js
		|- main.js
404.html
humans.txt
index.html
robots.txt
  • : Flexo is a grid system based on flex property. It's an extension for Iceberg. For more informations, check the Github project here: https://github.com/KevinPy/Flexo

HTML Structure

In the index.html, you are some meta tags. You do complete this meta tags:

<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />

After, you are others tags, Open Graph, from Facebook and Twitter. This is the meta tags list:

<meta property="og:title" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:description" content="" />
<meta property="og:locale" content="" />
<meta property="og:site_name" content="" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@" />
<meta name="twitter:title" content="" />
<meta name="twitter:description" content="" />
<meta name="twitter:image" content="" />

CSS Structure

The structure of CSS file is really simple. First, you are a summary for listed the differents parts of your CSS file. You have this presentation:

1 - General
	1.1 - Import
	1.2 - Style

99 - Media Queries
	99.1 - < 960px
	99.2 - 640px < 960px
	99.3 - > 640px
	99.99 - Print

And also the comment separator:

/*----------------------------------------*/
/* 0.0 - Section's Name */
/*----------------------------------------*/

Iceberg use the rem font-size. The htmlhas this attribute :

html { font-size: 62.5%; }

With this hack, you doesn't converted value between px and rem. You can use the px, it's works. Example:

1rem => 10px
1.6rem => 16px
30rem => 300px

Iceberg use its own reset CSS, based on normalize.css.

JS Structure

JS file works, with the same summary that CSS file.

Keywords

framework

FAQs

Package last updated on 08 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts