-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e0e1dee
Showing
21 changed files
with
465 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
* { | ||
font-size: 18px; | ||
} | ||
|
||
.cover { | ||
animation: parallax 1s ease-in-out; | ||
} | ||
|
||
.banner { | ||
min-height: 500px; | ||
color: #FFF; | ||
} | ||
|
||
.centerex.overlay { | ||
background: rgba(2, 0, 0, 0.4); | ||
} | ||
|
||
.justify-content-center { | ||
justify-content: center; | ||
} | ||
|
||
.s-card { | ||
padding: 30px 5%!important; | ||
} | ||
|
||
.s-card h2 { | ||
font-size: 2.4em; | ||
} | ||
|
||
.service { | ||
background-color: #005199; | ||
padding: 15px; | ||
width: 90px; | ||
border-radius: 50%; | ||
} | ||
|
||
.service > img { | ||
fill: #FFF; | ||
width: 50px | ||
} | ||
|
||
.social { | ||
padding: 10px; | ||
background-color: #FFF; | ||
border-radius: 50%; | ||
} | ||
|
||
.btn.info { | ||
color: #FFF; | ||
} | ||
|
||
.grey { | ||
background-color: #EFEFEF; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.order-xs-1 { | ||
-webkit-box-ordinal-group: 3; | ||
order: 0; | ||
} | ||
.order-xs-2 { | ||
-webkit-box-ordinal-group: 3; | ||
order: 1; | ||
} | ||
} | ||
@media (min-width: 768px) { | ||
.order-sm-1 { | ||
-webkit-box-ordinal-group: 3; | ||
order: 0; | ||
} | ||
.order-sm-2 { | ||
-webkit-box-ordinal-group: 3; | ||
order: 1; | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
## GainTime | ||
|
||
GainTime é um novo framework de HTML, CSS e JS para desenvolvimento de projetos responsivos, focado na simplicidade. | ||
Atenção! | ||
|
||
### Por onde começar? | ||
|
||
O GainTime oferece algumas formas de download para atender níveis de necessidade diferentes. Veja qual a mais adequada para você. | ||
|
||
#### GainTime | ||
|
||
CSS e JavaScript compilados e minificados. Não inclui código fonte, nem documentação. | ||
|
||
#### Código Fonte | ||
|
||
Arquivos SASS (.sass) e JavaScript. Requer o compilador SASS. | ||
|
||
#### Instalação com Bower | ||
|
||
CSS e JavaScript compilados e minificados. Não inclui código fonte, nem documentação. | ||
``` | ||
$ bower install gaintime | ||
``` | ||
#### Template Básico | ||
|
||
Copie o código HTML abaixo para começar a trabalhar com um documento GainTime mínimo. | ||
|
||
``` html | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Minha página</title> | ||
<link rel="stylesheet" href="css/gaintime.min.css" media ="screen" title="no title"> | ||
</head> | ||
<body> | ||
<section> | ||
<h1>Fique focado, e vai vencer no final.</h1> | ||
</section> | ||
<script type="text/javascript" src="js/gaintime.min.js"></script> | ||
</body> | ||
</html> | ||
``` | ||
|
||
GainTime 2017 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "gaintime", | ||
"homepage": "https://gaintime.github.io", | ||
"authors": [ | ||
"JP Rodrigues <[email protected]>" | ||
], | ||
"description": "GainTime é um framework de HTML, CSS e JS para desenvolvimento de projetos responsivos, focado na simplicidade. ", | ||
"keywords": [ | ||
"css", | ||
"js", | ||
"sass", | ||
"responsive", | ||
"front-end", | ||
"framework", | ||
"web" | ||
], | ||
"license": "MIT", | ||
"ignore": [ | ||
"*.map", | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests", | ||
"vendors" | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.