10 changed files with 152 additions and 67 deletions
@ -0,0 +1,18 @@ |
|||
<div class="content-in-center-header" style="flex-direction: column;"> |
|||
<h1>Правила</h1> |
|||
<h3>п.с на самом деле их нет, но тебя могут просто так забанить</h3> |
|||
</div> |
|||
|
|||
<div class="content-in-center"> |
|||
<div class="content-in-border"> |
|||
<div class="container responsive-grid"> |
|||
<mat-card *ngFor="let rule of rules" class="example-card"> |
|||
<mat-card-title>{{rule.name}}</mat-card-title> |
|||
<mat-card-subtitle>{{rule.ban}}</mat-card-subtitle> |
|||
<mat-card-content> |
|||
<p>{{rule.about}}</p> |
|||
</mat-card-content> |
|||
</mat-card> |
|||
</div> |
|||
</div> |
|||
</div> |
@ -0,0 +1,9 @@ |
|||
.container { |
|||
padding: 24px; |
|||
} |
|||
|
|||
.responsive-grid { |
|||
display: grid; |
|||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); |
|||
gap: 24px; |
|||
} |
@ -0,0 +1,24 @@ |
|||
import { Component, OnInit } from '@angular/core'; |
|||
|
|||
@Component({ |
|||
selector: 'app-rules-page', |
|||
templateUrl: './rules-page.component.html', |
|||
styleUrls: ['./rules-page.component.scss'] |
|||
}) |
|||
export class RulesPageComponent implements OnInit { |
|||
|
|||
rules: {name: string, ban: string, about: string, url: string}[] = [ |
|||
{name: "Читы", ban: "Бан навсегда сука", about: "Сюда входят все типы читов, но бан можно получить если ты явно мешаешь игре других", url: ""}, |
|||
{name: "Реклама серверов", ban: "бан навсегда сука", about: "Мы не одобряем рекламу других серверов в мертовой игре кроме МГЕ", url: ""}, |
|||
{name: "Багоюз", ban: "бан навсегда", about: "Баги карт и плагинов, лучше сообщи нам о них прежде чем на тебя настучат", url: ""}, |
|||
{name: "Абуз !mir", ban: "На наше усмотрение", about: "Блокировка дверей, открытие спавна и т.д", url: ""}, |
|||
{name: "Абуз випки", ban: "На наше усмотрение", about: "Ты получил випку что мешать другим? Нет так не пойдет тебя покарают", url: ""}, |
|||
{name: "Делай короче чё хочешь", ban: "Его может и не быть", about: ":troll_face:", url: ""}, |
|||
]; |
|||
|
|||
constructor() { } |
|||
|
|||
ngOnInit(): void { |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue