All Projects → caramelcss → Caramel

caramelcss / Caramel

Licence: gpl-3.0
a simple to use, easy to remember css framework

Programming Languages

js
455 projects

Projects that are alternatives of or similar to Caramel

Acyort
A Node.js static website framework
Stars: ✭ 118 (-4.84%)
Mutual labels:  framework
Harmonic
A high performance and scalable RTMP live streaming application framework
Stars: ✭ 121 (-2.42%)
Mutual labels:  framework
Group
轻量级框架 。实现了定时任务功能,分布式任务队列,命令行控制台,数据库脚本自动化,单元测试, rpc服务,多进程服务(模拟map-reduce)等等实用的功能!! 文档 https://fucongcong.gitbooks.io/group-doc/content/.
Stars: ✭ 122 (-1.61%)
Mutual labels:  framework
Narration
The Narration PHP Framework - Empowering everyone to build reliable and loosely coupled web apps.
Stars: ✭ 119 (-4.03%)
Mutual labels:  framework
Puresharp
Puresharp is a Framework that provides the essential APIs (AOP, IOC, etc...) to productively build high quality (.NET 4.5.2+ & .NET Core 2.1+) applications through reliability, scalability and performance without no compromise
Stars: ✭ 120 (-3.23%)
Mutual labels:  framework
Nimble
Stars: ✭ 121 (-2.42%)
Mutual labels:  framework
Kyua
Testing framework for infrastructure software
Stars: ✭ 117 (-5.65%)
Mutual labels:  framework
Masonite
The Modern And Developer Centric Python Web Framework. Be sure to read the documentation and join the Slack channel questions: http://slack.masoniteproject.com
Stars: ✭ 1,681 (+1255.65%)
Mutual labels:  framework
Ipv6tools
IPv6Tools is a robust modular framework that enables the ability to visually audit an IPv6 enabled network.
Stars: ✭ 120 (-3.23%)
Mutual labels:  framework
Eviltwinframework
A framework for pentesters that facilitates evil twin attacks as well as exploiting other wifi vulnerabilities
Stars: ✭ 122 (-1.61%)
Mutual labels:  framework
Oxygen
一个轻量级Java框架,包含ioc、aop、config、cache、job、Jdbc、web等
Stars: ✭ 119 (-4.03%)
Mutual labels:  framework
Tinypart
TinyPart is an iOS modularization framework implemented by Ojective-C. It also supports URL-routing and inter-module communication. TinyPart是一个由Objective-C编写的面向协议的iOS模块化框架,同时它还支持URL路由和模块间通信机制。
Stars: ✭ 120 (-3.23%)
Mutual labels:  framework
Arikawa
A Golang library and framework for the Discord API.
Stars: ✭ 123 (-0.81%)
Mutual labels:  framework
Canari3
Canari v3 - next gen Maltego framework for rapid remote and local transform development
Stars: ✭ 118 (-4.84%)
Mutual labels:  framework
Modulz Atomic
A set of single-purpose CSS classes for scalable front-end development.
Stars: ✭ 122 (-1.61%)
Mutual labels:  framework
Server
Framework NodeJS for GraphQl
Stars: ✭ 118 (-4.84%)
Mutual labels:  framework
O2
2D Game Engine with visual WYSIWYG editor
Stars: ✭ 121 (-2.42%)
Mutual labels:  framework
Round Anything
A set of OpenSCAD utilities for adding radii and fillets, that embodies a robust approach to developing OpenSCAD parts.
Stars: ✭ 122 (-1.61%)
Mutual labels:  framework
Sun
Android-Sun-Framework 模块化开发框架
Stars: ✭ 123 (-0.81%)
Mutual labels:  framework
Telegraff
Kotlin DSL для разработки Telegram ботов
Stars: ✭ 122 (-1.61%)
Mutual labels:  framework

Caramel

Join us on Discord

Caramel is a simple, modern, responsive website framework. Caramel is fully responsive, meaning you only need to write code once, to have the same results across multiple platforms. Created by kurisubrooks, Caramel is being developed with help from the open-source community on GitHub.

Getting Started

Quick Start

Jump right into Caramel by using the following HTML5 Boilerplate.

<!doctype html>
<html lang="en">
<head>
    <title>Caramel</title>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="./caramel.min.css" rel="stylesheet">
</head>
<body>

    <main>
        <h1>Welcome to Caramel!</h1>
        <p>Your code goes down here!</p>
    </main>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
    <script src="./caramel.min.js"></script>

</body>
</html>

What's included?

Our public releases only contain the files that are necessary for front-end development. If you'd like to develop for, or modify Caramel, we'd recommend downloading the Development Build, which includes our build tool, and the sass source files.

caramel/
├── showcase.html
│
├── css/
│   ├── caramel.css
│   └── caramel.min.css
│
└── js/
    ├── caramel.js
    └── caramel.min.js

Documentation

Head on over to our website, and view the Showcase. All code usage and examples are listed right there on the page! If you want to see the exact syntax we use to show you the content on the page, simply right click on the page and view source (depending on whether your browser supports this feature).

Still stuck or need further help? Tweet @kurisubrooks, and he'll try to answer any questions you may have.

Compiling

We've included an easy and hassle free way for you to compile Caramel. We've included our own Gulp build tool, that you can use to compile Caramel.

Required:

Our compiler runs on Node.js, so before you can continue, please ensure that you have it installed. Once you have Node installed, you'll need Gulp. If you already have both Node and Gulp installed, skip these steps, otherwise install Node.js from their website, then run the following command to install Gulp:

npm install gulp --global

Note: You may need to run this command with sudo on macOS

Install:

To get the latest version of Caramel and to install the build tools, run the following set of commands:

git clone https://github.com/caramelcss/caramel.git
cd ./caramel
npm install

Usage:

To run the build tool, run the following command:

gulp

After the build is complete, the output caramel.css, caramel.min.css and caramel.min.js files can be found in your ./dist/css and ./dist/js folders respectively.

Compatibility

Caramel has been designed for any browser that supports CSS3. Caramel has been tested, and is recommended for use on:

Chrome Firefox Safari Opera Edge IE
21+ 28+ 7+ 12.1+ 20+ 10, 11
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].