All Projects → OwlyStuff → Amazium

OwlyStuff / Amazium

Licence: mit
The responsive CSS web framework

Projects that are alternatives of or similar to Amazium

Hyperion Ios
In-app design review tool to inspect measurements, attributes, and animations.
Stars: ✭ 1,964 (+1104.91%)
Mutual labels:  framework
Busker
An extremely simple web framework.
Stars: ✭ 161 (-1.23%)
Mutual labels:  framework
Mono
Minimalist Framework on top of Express.js
Stars: ✭ 163 (+0%)
Mutual labels:  framework
Revact
Full reactivity JS/TS framework. Lightweight replacement of React + MobX + React Router. Very small and fast !!
Stars: ✭ 159 (-2.45%)
Mutual labels:  framework
Stove
Domain Driven Design oriented application framework, meets CRUD needs
Stars: ✭ 160 (-1.84%)
Mutual labels:  framework
Vendure
A headless GraphQL ecommerce framework for the modern web
Stars: ✭ 2,961 (+1716.56%)
Mutual labels:  framework
Py Ipv8
Python implementation of the IPv8 layer
Stars: ✭ 157 (-3.68%)
Mutual labels:  framework
Uibench
UI Benchmark
Stars: ✭ 163 (+0%)
Mutual labels:  framework
Goat
[DEPRECATED] 🐐 A minimalistic JSON API server in Go
Stars: ✭ 161 (-1.23%)
Mutual labels:  framework
Mandarinets
Mandarine.TS is a typescript, decorator-driven framework that allows you to create server-side applications. Mandarine.TS provides a range of built-in solutions such as Dependency Injection, Components, ORM and more. Under its umbrella, Mandarine.TS has 4 modules: Core, Data, Security and MVC, these modules will offer you the requirements to build a Mandarine-powered application.
Stars: ✭ 161 (-1.23%)
Mutual labels:  framework
Zeebsploit
web scanner - exploitation - information gathering
Stars: ✭ 159 (-2.45%)
Mutual labels:  framework
Anpylar
Python client-side web development framework
Stars: ✭ 160 (-1.84%)
Mutual labels:  framework
Objfw
[Official Mirror] A portable framework for the Objective-C language.
Stars: ✭ 161 (-1.23%)
Mutual labels:  framework
Avalanche
Avalanche: a End-to-End Library for Continual Learning.
Stars: ✭ 151 (-7.36%)
Mutual labels:  framework
Snail
An observables framework for Swift
Stars: ✭ 163 (+0%)
Mutual labels:  framework
Fx
A dependency injection based application framework for Go.
Stars: ✭ 2,383 (+1361.96%)
Mutual labels:  framework
Discord Player
🎧 Complete framework to simplify the implementation of music commands using discords.js v12
Stars: ✭ 161 (-1.23%)
Mutual labels:  framework
Shackle
High-Performance Erlang Network Client Framework
Stars: ✭ 163 (+0%)
Mutual labels:  framework
Gene For Php7
Simple, high performance,C extension framework for php!(php-gene-for-php7)
Stars: ✭ 163 (+0%)
Mutual labels:  framework
Fastapi Crudrouter
A dynamic FastAPI router that automatically creates CRUD routes for your models
Stars: ✭ 159 (-2.45%)
Mutual labels:  framework

Amazium Build Status

Responsive CSS Framework

Literally Too orangey for crows!

See Amazium.co.uk

Ember-CLI application setup

It is not possible to directly import CSS assets into an ember-cli application at the moment and therefore the following configuration steps are required to get amazium working with an ember cli application.

Install amazium

Run the following in your application root to install amazium:

npm install amazium --save-dev

Install ember-cli addon to import css assets from node modules

Run the following in your application root:

ember install ember-cli-node-assets

Import amazium compiled CSS in your application

Update the Ember CLI build file to include the amazium compiled CSS from the node package:

// ember-cli-build.js
var app = new EmberApp(defaults, {
  ...
  nodeAssets: {
    'amazium': {
      srcDir: 'dist',
      import: ['amazium.css']
    }
  }
});

Creating an Amazium build with a custom grid

Adjust the grid parameters

The default parameters for the amazium grid are adjustable. You can set your own values in the _variables.scss file. When the SASS is compiled the grid values are calculated according to the set values. With these variable it is now possible to build a 1440px grid with 16 columns or whatever you wish.

/***** Define grid width *****/
$grid-width: 1200px;
$grid-width-smscreen: 960px;
$grid-width-tablet: 768px;

/***** Define column number *****/
$grid-columns: 12;

/***** Define gutter spacing *****/
$grid-gutter: 20px;

/***** Calculate gutter spacing for breakpoints / can also be set manually *****/
$grid-gutter-smscreen: $grid-gutter / 1.25;
$grid-gutter-tablet: $grid-gutter-smscreen / 1.1;
Variables in detail
  • $grid-width controls how wide the initial grid is.
  • $grid-width-smscreen controls how wide the grid on small screens is. This value also contols the smallscreen breakpoint.
  • $grid-width-tablet controls how wide the grid on tablets is. This value also contols the tablet breakpoint.
  • $grid-columns controls how much columns there are.
  • $grid-gutter controls how much space there is between columns.
  • $grid-gutter-smscreen calculates how much space there is between columns on small screens. Can also be set manually.
  • $grid-gutter-tablet calculates how much space there is between columns on tablets. Can also be set manually.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].