-
Notifications
You must be signed in to change notification settings - Fork 7
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
d11a035
commit b4a8177
Showing
17 changed files
with
103 additions
and
80 deletions.
There are no files selected for viewing
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,10 +1,14 @@ | ||
.project{ | ||
.project { | ||
margin: 2px 20px 2px; | ||
width: 18rem; | ||
} | ||
|
||
.slider_button{ | ||
.slider_button { | ||
display: block; | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
} | ||
} | ||
|
||
.work-section { | ||
margin-top: 5vh; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<p> | ||
project-card works! | ||
</p> |
Empty file.
28 changes: 28 additions & 0 deletions
28
src/app/components/project-card/project-card.component.spec.ts
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,28 @@ | ||
/* tslint:disable:no-unused-variable */ | ||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { By } from '@angular/platform-browser'; | ||
import { DebugElement } from '@angular/core'; | ||
|
||
import { ProjectCardComponent } from './project-card.component'; | ||
|
||
describe('ProjectCardComponent', () => { | ||
let component: ProjectCardComponent; | ||
let fixture: ComponentFixture<ProjectCardComponent>; | ||
|
||
beforeEach(async(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ ProjectCardComponent ] | ||
}) | ||
.compileComponents(); | ||
})); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ProjectCardComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
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,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-project-card', | ||
templateUrl: './project-card.component.html', | ||
styleUrls: ['./project-card.component.scss'] | ||
}) | ||
export class ProjectCardComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,32 @@ | ||
[ | ||
{ | ||
"projectName": "Sertum", | ||
"image": "sertum.jpg", | ||
"description": "Sertum is a robot which can do both cleaning and serving on its own." | ||
}, | ||
{ | ||
"projectName": "Cake-a-licious Website", | ||
"image": "Cake-a-licious.png", | ||
"description": "The official website of cake-a-licious cake store." | ||
}, | ||
{ | ||
"projectName": "Ajith motors Entry System", | ||
"image": "ajithMotors.jpg", | ||
"description": "A data entry managment system deployed in Ajith motors car sale." | ||
}, | ||
{ | ||
"projectName": "Fhix 45 Website", | ||
"image": "fhix.png", | ||
"description": "The official website of Fhix 45 gymnasium." | ||
}, | ||
{ | ||
"projectName": "CodeJunction Website", | ||
"image": "codeJuctionWebsite.png", | ||
"description": "The official website of CodeJunction. (Open Source ❤️)" | ||
}, | ||
{ | ||
"projectName": "Fire call", | ||
"image": "firecall.jpg", | ||
"description": "A sound wave classifying tool which analyse audio content. (Open Source ❤️)" | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.