-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
10 changed files
with
137 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
md-card { | ||
float: left; | ||
width: 420px; | ||
margin: 10px; | ||
} | ||
|
||
md-card.full { | ||
width: calc(100% - 68px); | ||
} | ||
|
||
md-card-title { | ||
font-size: 22px !important; | ||
} | ||
|
||
md-card-title.large { | ||
font-size: 28px !important; | ||
margin: 0; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
.seperator { | ||
width: 100%; | ||
margin-top: 30px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.line { | ||
position: relative; | ||
width: calc(100% + 48px); | ||
left: -24px; | ||
right: -24px; | ||
border-bottom: 1px solid rgba(0,0,0,0.2); | ||
} | ||
|
||
.mat-list-icon { | ||
color: rgba(0, 0, 0, 0.54); | ||
} | ||
|
||
.mat-list .mat-list-item .mat-list-avatar { | ||
opacity: 0.6; | ||
border-radius: 0; | ||
} |
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,29 @@ | ||
<md-card class="full"> | ||
<md-card-content> | ||
<md-card-header> <md-card-title class="large">Say hi</md-card-title> </md-card-header> | ||
<div class="seperator"><div class="line"></div></div> | ||
|
||
<md-list> | ||
<a href="https://twitter.com/irt_io" md-list-item> | ||
<img md-list-avatar src="../../assets/images/twitter.svg" alt="..."> | ||
<h4 md-line>Twitter</h4> | ||
<p md-line>@irt_io</p> | ||
</a> | ||
<a href="https://github.com/irt-io" md-list-item> | ||
<img md-list-avatar src="../../assets/images/github-circle.svg" alt="..."> | ||
<h4 md-line>Github</h4> | ||
<p md-line>irt-io</p> | ||
</a> | ||
<a href="https://www.linkedin.com/in/alexanderstavrinou/" md-list-item> | ||
<img md-list-avatar src="../../assets/images/linkedin.svg" alt="..."> | ||
<h4 md-line>Linkedin</h4> | ||
<p md-line>Alexander Stavrinou</p> | ||
</a> | ||
<a href="mailto:alex@irt.io?Subject=Hi" md-list-item> | ||
<img md-list-avatar src="../../assets/images/email-open.svg" alt="..."> | ||
<h4 md-line>Email</h4> | ||
<p md-line>alex@irt.io</p> | ||
</a> | ||
</md-list> | ||
</md-card-content> | ||
</md-card> |
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,25 @@ | ||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { ContactComponent } from './contact.component'; | ||
|
||
describe('ContactComponent', () => { | ||
let component: ContactComponent; | ||
let fixture: ComponentFixture<ContactComponent>; | ||
|
||
beforeEach(async(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ ContactComponent ] | ||
}) | ||
.compileComponents(); | ||
})); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ContactComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should be created', () => { | ||
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-contact', | ||
templateUrl: './contact.component.html', | ||
styleUrls: ['./contact.component.css'] | ||
}) | ||
export class ContactComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
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
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.