Skip to content

Commit

Permalink
Adiciona tema landing
Browse files Browse the repository at this point in the history
  • Loading branch information
jprodrigues70 committed Mar 22, 2018
0 parents commit e0e1dee
Show file tree
Hide file tree
Showing 21 changed files with 465 additions and 0 deletions.
Empty file added README.md
Empty file.
75 changes: 75 additions & 0 deletions assets/css/landing.css
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;
}
}
2 changes: 2 additions & 0 deletions assets/css/landing.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/img/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/img/fb.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions assets/img/g.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions assets/img/gaintime.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/img/in.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/img/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/pic_1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/pic_2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/pic_3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/img/service_1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/img/service_2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/img/service_3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions gaintime/README.md
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
27 changes: 27 additions & 0 deletions gaintime/bower.json
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"
]
}
2 changes: 2 additions & 0 deletions gaintime/css/gaintime.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit e0e1dee

Please sign in to comment.