Skip to content

Commit

Permalink
Merge branch 'feature/design_web_colors' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Patricia Mayo Tejedor committed Jul 14, 2016
2 parents 0c7b58d + 7f5f2ae commit f0dcfa5
Show file tree
Hide file tree
Showing 30 changed files with 232 additions and 78 deletions.
Binary file modified app/favicon.ico
Binary file not shown.
Binary file added app/images/alexBg5.jpg
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 app/images/alexIcoNoBorder.png
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 app/images/happybotsIco.png
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 app/images/hbIcoL.png
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 app/images/hbIcoM.png
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 app/images/hbIcoS.png
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 app/images/hbIcoWhite.png
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 app/images/hbIcoXL.png
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 app/images/hbIcoXS.png
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 app/images/hbIcoXXL.png
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 app/images/hbIcoXXS.png
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 app/images/wipBg2.png
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 app/images/wipIco3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->
<script src="https://use.fontawesome.com/b8df798ef0.js"></script>

<meta property="og:title" content="HAPPYBOTS" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://happybots.io" />
<meta property="og:image" content="http://happybots.io/images/hbIcoXXL.png" />

</head>
<body ng-app="happybotsApp">
<!--[if lte IE 8]>
Expand All @@ -27,7 +33,6 @@

<div ng-view=""></div>

<bot-bar></bot-bar>


<!-- Google Analytics: change UA-XXXXX-X to be your site's ID -->
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/services/botsdata.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ angular.module('happybotsApp')
id: "alex",
description: "A Wikipedia bot for messenger",
imageSrc:"images/alex.png",
imageBgSrc:"images/alexBg.jpg",
icoSrc:"images/alexIco.png",
imageBgSrc:"images/alexBg5.jpg",
icoSrc:"images/alexIcoNoBorder.png",
messengerUrl: "https://m.me/1753699528246555",
githubUrl: "https://github.com/patriciamayo/wikiMessenger"
},
Expand Down
61 changes: 55 additions & 6 deletions app/styles/_about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,75 @@

margin-top: $navbar-height;
text-align: center;
margin: auto;

h1, h2, h3, h4, p {
color: #333;
}

h2 {
margin-bottom: 35px;
}

h4 {
font-weight: 300;
margin-top: 20px;
margin-bottom: 20px;
font-size: 2rem;
}

img {
display: block;
margin: 0 auto;
}

.center {
display: block;
margin: 0 auto;
}


.colored-block {
width: 100%;
padding: 30px 0px;
padding-top: 100px;
padding-bottom: 90px;
padding-left: 0;
padding-right: 0;
color:#fff;
}

.purple{
background:purple;
.white{
background: white;
}

.green{
background:green;
.grey{
background: $gray-lighter;
}

.blue{
background:blue;
}

.block {
margin-top: $navbar-height;
margin-bottom: $navbar-height;
}

.text-block {
text-align: center;
}

.love {
color: $red !important;
}


.about-logo {
height:150px;
width: 150px;
}

.team-section {
padding-bottom: 130px;
}

}
16 changes: 15 additions & 1 deletion app/styles/_bot.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

.bot {

h1, h2 {
color: #fff;
color: #333;
}

h1 {
Expand All @@ -18,5 +19,18 @@
width: 20px;
}

min-height: 100vh;

}


@media (max-width: $screen-sm-min) {

.bot {
h1 {
text-transform: uppercase;
font-size: 3rem;
}
}

}
2 changes: 1 addition & 1 deletion app/styles/_botbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ footer {
position: fixed;
bottom: 0;
width: 100%;
border-bottom: 40px solid #fff;
border-bottom: 40px solid $accent;
}

.botbar {
Expand Down
32 changes: 23 additions & 9 deletions app/styles/_flexbox.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
.center {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
@media (min-width: $screen-sm-min) {

.center {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}

.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}

}

.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
@media (max-width: $screen-sm-min) {

.center, .text-block {
text-align: center !important;
}



}
26 changes: 26 additions & 0 deletions app/styles/_global.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
.cursor-link {
cursor:pointer;
}

.logo {
height: 40px;
margin-right: 5px;
margin-top: 5px;
float: left;
padding-left: 10px;
}



.text-block {
margin-top: 30px;
margin-bottom: 30px;
text-align: justify;
font-size: 2rem;
}

.love {
color: $red !important;
}


.btn {
margin-bottom: 5px;
}
19 changes: 19 additions & 0 deletions app/styles/_socialbuttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
padding-left: 0;
}

.parent-center {
.social { text-align: center; }
.social ul { display:inline-table; }
.social li { display:inline; }
}




@media (max-width: $screen-sm-min) {

.social-center {
.social { text-align: center; }
.social ul { display:inline-table; }
.social li { display:inline; }
margin-bottom: 100px;
}

}

.social {
ul {
Expand Down
15 changes: 10 additions & 5 deletions app/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ $gray: lighten($gray-base, 33.5%) !default; // #555
$gray-light: lighten($gray-base, 46.7%) !default; // #777
$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
$red: #ED5565;
$accent: #06a8e1;
$accent-secondary: #25c079;


$brand-primary: #0084ff !default; // #337ab7
$brand-success: #5cb85c !default;
Expand All @@ -33,7 +36,7 @@ $body-bg: #fff !default;
$text-color: $gray-dark !default;

//** Global textual link color.
$link-color: $brand-primary !default;
$link-color: $accent !default;
//** Link hover color set via `darken()` function.
$link-hover-color: darken($link-color, 15%) !default;
//** Link hover decoration.
Expand Down Expand Up @@ -370,12 +373,14 @@ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
$navbar-collapse-max-height: 340px !default;

$navbar-default-color: #777 !default;
$navbar-default-bg: #f8f8f8 !default;
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
//$navbar-default-color: #777 !default;
$navbar-default-color: $accent-secondary !default;
//$navbar-default-bg: #f8f8f8 !default;
$navbar-default-bg: $accent-secondary !default;
$navbar-default-border: $accent-secondary !default;

// Navbar links
$navbar-default-link-color: #777 !default;
$navbar-default-link-color: #ffffff !default;
$navbar-default-link-hover-color: #333 !default;
$navbar-default-link-hover-bg: transparent !default;
$navbar-default-link-active-color: #555 !default;
Expand Down
24 changes: 16 additions & 8 deletions app/styles/_wip.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
.wip {

h2 {
margin-bottom: 30px;
text-transform: uppercase;
font-size: 4rem;
}
h2 {
margin-bottom: 30px;
font-size: 3rem;
}

h3 {
font-size: 3rem;
}

.text-block {
margin-top: 30px;
Expand Down Expand Up @@ -66,3 +62,15 @@


}


@media (max-width: $screen-sm-min) {

.wip {
h2 {
font-size: 2rem;
}

}

}
Loading

0 comments on commit f0dcfa5

Please sign in to comment.