-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
2ed263a
commit cd3025e
Showing
18 changed files
with
102 additions
and
164 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +0,0 @@ | ||
@import "alert"; | ||
@import "avatars"; | ||
@import "badges"; | ||
@import "table"; | ||
@import "body"; | ||
@import "svg"; | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
.footer { | ||
z-index: 3; | ||
height: 70px; | ||
position: fixed; | ||
bottom: 0%; | ||
width: 100%; | ||
background-color: $brand-color; | ||
} |
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ | |
position: fixed; | ||
top: 0%; | ||
width: 100%; | ||
background-color: $brand-color; | ||
} |
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 |
---|---|---|
@@ -1,25 +1,13 @@ | ||
/* ------------------------------------- | ||
* Utilities classes | ||
* These are examples of utilities classes | ||
* Feel free to change them and create your own | ||
* ------------------------------------- */ | ||
|
||
// Paddings | ||
.padded { | ||
padding-top: 5em; | ||
padding-bottom: 5em; | ||
body { | ||
background: #F7F7F7; | ||
} | ||
|
||
// Backgrounds | ||
.bg-black { | ||
background: #4a4a4a; | ||
} | ||
.bg-grey { | ||
background: #aeaeae; | ||
} | ||
.bg-blue { | ||
background: #00a3e1; | ||
} | ||
.bg-dark-blue { | ||
background: #3b5998; | ||
a { | ||
color: $brand-color; | ||
text-decoration: none; | ||
|
||
&:hover { | ||
color: $brand-color; | ||
text-decoration: underline; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,74 @@ | ||
.home-top-line { | ||
width: 100%; | ||
min-height: 3px; | ||
background-color: $brand-color; | ||
} | ||
|
||
.vertically-align { | ||
min-height: 90vh; | ||
display: flex; | ||
align-items: center; | ||
} | ||
#home { | ||
min-height: calc(100vh - 140px); | ||
padding-top: 150px; | ||
img { | ||
margin-bottom: 30px; | ||
} | ||
|
||
.search-box { | ||
display: inline-block; | ||
width: 100%; | ||
border-radius: 3px; | ||
padding: 4px 55px 4px 15px; | ||
position: relative; | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
@include transition(all 200ms ease-in-out); | ||
|
||
&.hovered, &:hover, &:active { | ||
border: 1px solid #aaa; | ||
} | ||
|
||
input[type=text] { | ||
border: none; | ||
box-shadow: none; | ||
display: inline-block; | ||
padding: 0; | ||
background: white; | ||
|
||
&:hover, &:focus, &:active { | ||
box-shadow: none; | ||
} | ||
|
||
&:-webkit-autofill { | ||
-webkit-box-shadow: 0 0 0px 1000px white inset; | ||
} | ||
} | ||
|
||
.search-btn { | ||
position: absolute; | ||
right: 3px; | ||
top: 3px; | ||
bottom: 3px; | ||
color: #aaa; | ||
border-radius: 3px; | ||
font-size: 21px; | ||
padding: 0px 10px 3px; | ||
@include transition(all 200ms ease-in-out); | ||
|
||
&:hover { | ||
color: #fff; | ||
background-color: $brand-color; | ||
} | ||
|
||
.fa { | ||
font-size: 21px; | ||
} | ||
} | ||
} | ||
|
||
p { | ||
margin-top: 15px; | ||
color: #7B7B7B; | ||
} | ||
} | ||
|
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.