mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 17:30:14 +01:00
feat(demo): add landing page with docs (#1951)
This commit is contained in:
parent
67c9587b87
commit
43cc3a1556
190 changed files with 15425 additions and 21 deletions
8
docs/app/pages/home/ribbon/ribbon.component.html
Normal file
8
docs/app/pages/home/ribbon/ribbon.component.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<div class="ribbon-dont-hunt">
|
||||
<svg style="padding-right:8px;" width="30" height="30" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M40 20c0 11.046-8.954 20-20 20S0 31.046 0 20 8.954 0 20 0s20 8.954 20 20" fill="#DA552F"></path>
|
||||
<path d="M22.667 20H17v-6h5.667a3 3 0 0 1 0 6m0-10H13v20h4v-6h5.667a7 7 0 1 0 0-14" fill="#FFF"></path>
|
||||
</g>
|
||||
</svg>Please, don't hunt me!
|
||||
</div>
|
||||
19
docs/app/pages/home/ribbon/ribbon.component.scss
Normal file
19
docs/app/pages/home/ribbon/ribbon.component.scss
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
.ribbon-dont-hunt {
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-weight: 700;
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
||||
width: 300px;
|
||||
color: rgb(218, 85, 47);
|
||||
background: rgb(255, 255, 255);
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
transform: rotate(40deg);
|
||||
box-shadow: rgba(50, 69, 93, 0.15) 0px 4px 7px 0px, rgba(0, 0, 0, 0.08) 0px -1px 4px 0px;
|
||||
top: 55px;
|
||||
right: -60px;
|
||||
}
|
||||
15
docs/app/pages/home/ribbon/ribbon.component.ts
Normal file
15
docs/app/pages/home/ribbon/ribbon.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright Akveo. All Rights Reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*/
|
||||
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ngx-landing-ribbon',
|
||||
templateUrl: './ribbon.component.html',
|
||||
styleUrls: ['./ribbon.component.scss'],
|
||||
})
|
||||
export class RibbonComponent {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue