Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Fun Bus is a travel agency looking for some help on their website. They want a

## Task 1: Set Up The Project With Git

- [ ] Create a forked copy of this project.
- [ ] Add your team lead as collaborator on Github.
- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!).
- [x] Create a forked copy of this project.
- [x] Add your team lead as collaborator on Github.
- [x] Clone your OWN version of the repository (Not Lambda's by mistake!).
- [ ] Create a new branch: git checkout -b `<firstName-lastName>`.
- [ ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly.
- [ ] Push commits: git push origin `<firstName-lastName>`.
Expand Down
14 changes: 14 additions & 0 deletions less/index.less
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
// Follow the order in the readme
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

@import 'variables.less';
@import 'mixins.less';
@import 'reset.less';
@import 'global.less';
@import 'navigation.less';
@import 'footer.less';
@import 'home-page.less';


28 changes: 27 additions & 1 deletion less/mixins.less
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
// Mixins in here
// Mixins in here
.testborder {
border: 1px solid red;
}
// button
.sign-me-up(@bcolor: rgb(35, 134, 105), @fcolor: white){
border: 1px solid black;
background-color: @bcolor;
color: @fcolor;
padding: 3%;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1.6rem;
margin: 1%;
border-radius: 10%;
// hover
&:hover {
background-color:@fcolor;
color: @bcolor;
}

//media 500px
@media @mobile (max-width:500px) {
padding: 3% 20%;
}
}