33 changed files with 0 additions and 1273 deletions
@ -1,29 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>net8.0</TargetFramework> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
<Nullable>enable</Nullable> |
||||
</PropertyGroup> |
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
||||
<DefineConstants>TRACE;</DefineConstants> |
||||
</PropertyGroup> |
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
||||
<DefineConstants>TRACE;</DefineConstants> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.14"/> |
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.14"> |
||||
<PrivateAssets>all</PrivateAssets> |
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||
</PackageReference> |
||||
</ItemGroup> |
||||
|
||||
<ItemGroup> |
||||
<ProjectReference Include="..\Model\Model.csproj"/> |
||||
</ItemGroup> |
||||
|
||||
</Project> |
||||
@ -1,36 +0,0 @@
|
||||
#if NO_SQL |
||||
#else |
||||
|
||||
using Microsoft.EntityFrameworkCore; |
||||
using Model; |
||||
using Model.Doc; |
||||
using Model.Git; |
||||
using Model.Notes; |
||||
using Model.Website; |
||||
using Model.Work.Tasks; |
||||
|
||||
namespace Contexts; |
||||
|
||||
public class DatabaseContext : DbContext |
||||
{ |
||||
public DatabaseContext(DbContextOptions<DatabaseContext> options) : base(options) |
||||
{ |
||||
Database.EnsureCreated(); |
||||
} |
||||
|
||||
public DbSet<AgileSprintModel> AgileSprintModels { get; set; } = default!; |
||||
public DbSet<AgileTaskModel> AgileTaskModels { get; set; } = default!; |
||||
public DbSet<GitChangeModel> GitChangeModels { get; set; } = default!; |
||||
public DbSet<GitPatchModel> GitPatchModels { get; set; } = default!; |
||||
public DbSet<WebPageModel> WebPageModels { get; set; } = default!; |
||||
public DbSet<WebSectionModel> WebSectionModels { get; set; } = default!; |
||||
public DbSet<DocContentModel> DocContentModels { get; set; } = default!; |
||||
public DbSet<DocConnectionModel> DocConnectionModels { get; set; } = default!; |
||||
public DbSet<DocSectionModel> DocSectionModels { get; set; } = default!; |
||||
public DbSet<NoteContentModel> NoteContentModels { get; set; } = default!; |
||||
public DbSet<NoteConnectionModel> NoteConnectionModels { get; set; } = default!; |
||||
public DbSet<NoteSectionModel> NoteSectionModels { get; set; } = default!; |
||||
public DbSet<Variable> Variables { get; set; } = default!; |
||||
} |
||||
|
||||
#endif |
||||
@ -1,12 +0,0 @@
|
||||
<Router AppAssembly="@typeof(App).Assembly"> |
||||
<Found Context="routeData"> |
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/> |
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1"/> |
||||
</Found> |
||||
<NotFound> |
||||
<PageTitle>Not found</PageTitle> |
||||
<LayoutView Layout="@typeof(MainLayout)"> |
||||
<p role="alert">Sorry, there's nothing at this address.</p> |
||||
</LayoutView> |
||||
</NotFound> |
||||
</Router> |
||||
@ -1,108 +0,0 @@
|
||||
@page "/" |
||||
|
||||
<MudThemeProvider/> |
||||
|
||||
<MudLayout> |
||||
<MudAppBar Elevation="1"> |
||||
<MudHidden Breakpoint="Breakpoint.SmAndDown" Invert="true"> |
||||
<MudIconButton Icon="@Icons.Material.Filled.Menu" Color="Color.Inherit" Edge="Edge.Start" |
||||
OnClick="@(e => DrawerToggle())"/> |
||||
</MudHidden> |
||||
<MudButton |
||||
Class="ml-3 mr-8" |
||||
Href="/" |
||||
Target="_self" |
||||
Variant="Variant.Text" |
||||
Color="Color.Default"> |
||||
<MudText Typo="Typo.h5"> IGP Fan Reference</MudText> |
||||
</MudButton> |
||||
<MudHidden Breakpoint="Breakpoint.MdAndUp" Invert="true"> |
||||
<MudButton Href="/build-calculator" |
||||
Variant="Variant.Text" |
||||
Color="Color.Default" |
||||
Class="mr-4"> |
||||
<MudIcon Icon="fa-solid fa-helmet-battle" Class="mr-2"/> |
||||
Build Calculator |
||||
</MudButton> |
||||
<MudButton Href="/harass-calculator" |
||||
Variant="Variant.Text" |
||||
Color="Color.Default" |
||||
Class="mr-4"> |
||||
<MudIcon Icon="fa-solid fa-bow-arrow" Class="mr-2"/> |
||||
Harass Calculator |
||||
</MudButton> |
||||
<MudButton Href="/database" |
||||
Variant="Variant.Text" |
||||
Color="Color.Default" |
||||
Class="mr-4"> |
||||
<MudIcon Icon="fa-solid fa-clipboard-list" Class="mr-2"/> |
||||
Database |
||||
</MudButton> |
||||
</MudHidden> |
||||
<MudSpacer/> |
||||
<MudIconButton Icon="@Icons.Material.Filled.MoreVert" Color="Color.Inherit" Edge="Edge.End"/> |
||||
</MudAppBar> |
||||
<MudHidden Breakpoint="Breakpoint.SmAndDown" Invert="true"> |
||||
<MudDrawer @bind-Open="_drawerOpen" ClipMode="DrawerClipMode.Always" Elevation="2"> |
||||
<MudPaper Width="250px" Class="d-inline-flex py-3" Elevation="0"> |
||||
<MudNavMenu Class="mud-width-full flex-grow-1"> |
||||
<MudNavLink Href="/build-calculator" Icon="fa-solid fa-helmet-battle">Build Calculator</MudNavLink> |
||||
<MudNavLink Href="/harass-calculator" Icon="fa-solid fa-bow-arrow">Harass Calculator</MudNavLink> |
||||
<MudNavLink Href="/database" Icon="fa-solid fa-clipboard-list">Database</MudNavLink> |
||||
<MudSpacer/> |
||||
<MudDivider Class="my-2"/> |
||||
<MudNavLink Href="/settings" Icon="fa-solid fa-gear">Settings</MudNavLink> |
||||
<MudDivider Class="my-2"/> |
||||
</MudNavMenu> |
||||
</MudPaper> |
||||
</MudDrawer> |
||||
</MudHidden> |
||||
|
||||
<MudMainContent> |
||||
<MudContainer Class="mt-16 px-8" MaxWidth="MaxWidth.False"> |
||||
<MudGrid> |
||||
<MudItem xs="12" sm="6" md="4"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="6" md="4"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="12" md="4"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="6"> |
||||
<MudGrid> |
||||
<MudItem xs="12"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
</MudGrid> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="6"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 100%"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="6" md="4"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="6" md="4"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
<MudItem xs="12" sm="12" md="4"> |
||||
<MudPaper Elevation="2" Class="pa-4" Style="height: 200px;"></MudPaper> |
||||
</MudItem> |
||||
</MudGrid> |
||||
</MudContainer> |
||||
</MudMainContent> |
||||
</MudLayout> |
||||
|
||||
@code { |
||||
bool _drawerOpen = true; |
||||
|
||||
void DrawerToggle() |
||||
{ |
||||
_drawerOpen = !_drawerOpen; |
||||
} |
||||
|
||||
} |
||||
@ -1,20 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>net8.0</TargetFramework> |
||||
<Nullable>enable</Nullable> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.14"/> |
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.14" PrivateAssets="all"/> |
||||
<PackageReference Include="MudBlazor" Version="6.0.14"/> |
||||
<PackageReference Include="MudBlazor.ThemeManager" Version="1.0.7"/> |
||||
</ItemGroup> |
||||
|
||||
<ItemGroup> |
||||
<ProjectReference Include="..\Components\Components.csproj"/> |
||||
</ItemGroup> |
||||
|
||||
</Project> |
||||
@ -1,14 +0,0 @@
|
||||
using Microsoft.AspNetCore.Components.Web; |
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting; |
||||
using MudBlazor.Services; |
||||
using Playground; |
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args); |
||||
builder.RootComponents.Add<App>("#app"); |
||||
builder.RootComponents.Add<HeadOutlet>("head::after"); |
||||
|
||||
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); |
||||
|
||||
builder.Services.AddMudServices(); |
||||
|
||||
await builder.Build().RunAsync(); |
||||
@ -1,40 +0,0 @@
|
||||
{ |
||||
"iisSettings": { |
||||
"windowsAuthentication": false, |
||||
"anonymousAuthentication": true, |
||||
"iisExpress": { |
||||
"applicationUrl": "http://localhost:60580", |
||||
"sslPort": 44344 |
||||
} |
||||
}, |
||||
"profiles": { |
||||
"http": { |
||||
"commandName": "Project", |
||||
"dotnetRunMessages": true, |
||||
"launchBrowser": true, |
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", |
||||
"applicationUrl": "http://localhost:5158", |
||||
"environmentVariables": { |
||||
"ASPNETCORE_ENVIRONMENT": "Development" |
||||
} |
||||
}, |
||||
"https": { |
||||
"commandName": "Project", |
||||
"dotnetRunMessages": true, |
||||
"launchBrowser": true, |
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", |
||||
"applicationUrl": "https://localhost:7253;http://localhost:5158", |
||||
"environmentVariables": { |
||||
"ASPNETCORE_ENVIRONMENT": "Development" |
||||
} |
||||
}, |
||||
"IIS Express": { |
||||
"commandName": "IISExpress", |
||||
"launchBrowser": true, |
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", |
||||
"environmentVariables": { |
||||
"ASPNETCORE_ENVIRONMENT": "Development" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
@ -1,24 +0,0 @@
|
||||
@inherits LayoutComponentBase |
||||
|
||||
|
||||
@Body |
||||
|
||||
|
||||
<MudThemeProvider @ref="@_mudThemeProvider" @bind-IsDarkMode="@_isDarkMode"/> |
||||
<MudDialogProvider/> |
||||
<MudSnackbarProvider/> |
||||
|
||||
@code { |
||||
private bool _isDarkMode; |
||||
private MudThemeProvider _mudThemeProvider; |
||||
|
||||
protected override async Task OnAfterRenderAsync(bool firstRender) |
||||
{ |
||||
if (firstRender) |
||||
{ |
||||
_isDarkMode = await _mudThemeProvider.GetSystemPreference(); |
||||
StateHasChanged(); |
||||
} |
||||
} |
||||
|
||||
} |
||||
@ -1,18 +0,0 @@
|
||||
@using System.Net.Http |
||||
@using System.Net.Http.Json |
||||
@using Microsoft.AspNetCore.Components.Forms |
||||
@using Microsoft.AspNetCore.Components.Routing |
||||
@using Microsoft.AspNetCore.Components.Web |
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization |
||||
@using Microsoft.AspNetCore.Components.WebAssembly.Http |
||||
@using Microsoft.JSInterop |
||||
@using Playground |
||||
@using Playground.Shared |
||||
@using Components |
||||
@using Components.Display |
||||
@using Components.Navigation |
||||
@using Components.Feedback |
||||
@using Components.Form |
||||
@using Components.Inputs |
||||
@using Playground.Shared; |
||||
@using MudBlazor; |
||||
@ -1,98 +0,0 @@
|
||||
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); |
||||
|
||||
|
||||
html, body { |
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; |
||||
} |
||||
|
||||
h1:focus { |
||||
outline: none; |
||||
} |
||||
|
||||
a, .btn-link { |
||||
color: #0071c1; |
||||
} |
||||
|
||||
.btn-primary { |
||||
color: #fff; |
||||
background-color: #1b6ec2; |
||||
border-color: #1861ac; |
||||
} |
||||
|
||||
.content { |
||||
padding-top: 1.1rem; |
||||
} |
||||
|
||||
.valid.modified:not([type=checkbox]) { |
||||
outline: 1px solid #26b050; |
||||
} |
||||
|
||||
.invalid { |
||||
outline: 1px solid red; |
||||
} |
||||
|
||||
.validation-message { |
||||
color: red; |
||||
} |
||||
|
||||
#blazor-error-ui { |
||||
background: lightyellow; |
||||
bottom: 0; |
||||
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); |
||||
display: none; |
||||
left: 0; |
||||
padding: 0.6rem 1.25rem 0.7rem 1.25rem; |
||||
position: fixed; |
||||
width: 100%; |
||||
z-index: 1000; |
||||
} |
||||
|
||||
#blazor-error-ui .dismiss { |
||||
cursor: pointer; |
||||
position: absolute; |
||||
right: 0.75rem; |
||||
top: 0.5rem; |
||||
} |
||||
|
||||
.blazor-error-boundary { |
||||
background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; |
||||
padding: 1rem 1rem 1rem 3.7rem; |
||||
color: white; |
||||
} |
||||
|
||||
.blazor-error-boundary::after { |
||||
content: "An error has occurred." |
||||
} |
||||
|
||||
.loading-progress { |
||||
position: relative; |
||||
display: block; |
||||
width: 8rem; |
||||
height: 8rem; |
||||
margin: 20vh auto 1rem auto; |
||||
} |
||||
|
||||
.loading-progress circle { |
||||
fill: none; |
||||
stroke: #e0e0e0; |
||||
stroke-width: 0.6rem; |
||||
transform-origin: 50% 50%; |
||||
transform: rotate(-90deg); |
||||
} |
||||
|
||||
.loading-progress circle:last-child { |
||||
stroke: #1b6ec2; |
||||
stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%; |
||||
transition: stroke-dasharray 0.05s ease-in-out; |
||||
} |
||||
|
||||
.loading-progress-text { |
||||
position: absolute; |
||||
text-align: center; |
||||
font-weight: bold; |
||||
inset: calc(20vh + 3.25rem) 0 auto 0.2rem; |
||||
} |
||||
|
||||
.loading-progress-text:after { |
||||
content: var(--blazor-load-percentage-text, "Loading"); |
||||
} |
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,86 +0,0 @@
|
||||
SIL OPEN FONT LICENSE Version 1.1 |
||||
|
||||
Copyright (c) 2014 Waybury |
||||
|
||||
PREAMBLE |
||||
The goals of the Open Font License (OFL) are to stimulate worldwide |
||||
development of collaborative font projects, to support the font creation |
||||
efforts of academic and linguistic communities, and to provide a free and |
||||
open framework in which fonts may be shared and improved in partnership |
||||
with others. |
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and |
||||
redistributed freely as long as they are not sold by themselves. The |
||||
fonts, including any derivative works, can be bundled, embedded, |
||||
redistributed and/or sold with any software provided that any reserved |
||||
names are not used by derivative works. The fonts and derivatives, |
||||
however, cannot be released under any other type of license. The |
||||
requirement for fonts to remain under this license does not apply |
||||
to any document created using the fonts or their derivatives. |
||||
|
||||
DEFINITIONS |
||||
"Font Software" refers to the set of files released by the Copyright |
||||
Holder(s) under this license and clearly marked as such. This may |
||||
include source files, build scripts and documentation. |
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the |
||||
copyright statement(s). |
||||
|
||||
"Original Version" refers to the collection of Font Software components as |
||||
distributed by the Copyright Holder(s). |
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting, |
||||
or substituting -- in part or in whole -- any of the components of the |
||||
Original Version, by changing formats or by porting the Font Software to a |
||||
new environment. |
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical |
||||
writer or other person who contributed to the Font Software. |
||||
|
||||
PERMISSION & CONDITIONS |
||||
Permission is hereby granted, free of charge, to any person obtaining |
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify, |
||||
redistribute, and sell modified and unmodified copies of the Font |
||||
Software, subject to the following conditions: |
||||
|
||||
1) Neither the Font Software nor any of its individual components, |
||||
in Original or Modified Versions, may be sold by itself. |
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled, |
||||
redistributed and/or sold with any software, provided that each copy |
||||
contains the above copyright notice and this license. These can be |
||||
included either as stand-alone text files, human-readable headers or |
||||
in the appropriate machine-readable metadata fields within text or |
||||
binary files as long as those fields can be easily viewed by the user. |
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font |
||||
Name(s) unless explicit written permission is granted by the corresponding |
||||
Copyright Holder. This restriction only applies to the primary font name as |
||||
presented to the users. |
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font |
||||
Software shall not be used to promote, endorse or advertise any |
||||
Modified Version, except to acknowledge the contribution(s) of the |
||||
Copyright Holder(s) and the Author(s) or with their explicit written |
||||
permission. |
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole, |
||||
must be distributed entirely under this license, and must not be |
||||
distributed under any other license. The requirement for fonts to |
||||
remain under this license does not apply to any document created |
||||
using the Font Software. |
||||
|
||||
TERMINATION |
||||
This license becomes null and void if any of the above conditions are |
||||
not met. |
||||
|
||||
DISCLAIMER |
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF |
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT |
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE |
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL |
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM |
||||
OTHER DEALINGS IN THE FONT SOFTWARE. |
||||
@ -1,21 +0,0 @@
|
||||
The MIT License (MIT) |
||||
|
||||
Copyright (c) 2014 Waybury |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
||||
@ -1,111 +0,0 @@
|
||||
[Open Iconic v1.1.1](http://useiconic.com/open) |
||||
=========== |
||||
|
||||
### Open Iconic is the open source sibling of [Iconic](http://useiconic.com). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](http://useiconic.com/open#icons) |
||||
|
||||
## What's in Open Iconic? |
||||
|
||||
* 223 icons designed to be legible down to 8 pixels |
||||
* Super-light SVG files - 61.8 for the entire set |
||||
* SVG sprite—the modern replacement for icon fonts |
||||
* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats |
||||
* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats |
||||
* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px. |
||||
|
||||
## Getting Started |
||||
|
||||
#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](http://useiconic.com/open#icons) and [Reference](http://useiconic.com/open#reference) sections. |
||||
|
||||
### General Usage |
||||
|
||||
#### Using Open Iconic's SVGs |
||||
|
||||
We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest |
||||
you display them like you would any other image (don't forget the `alt` attribute). |
||||
|
||||
``` |
||||
<img src="/open-iconic/svg/icon-name.svg" alt="icon name"> |
||||
``` |
||||
|
||||
#### Using Open Iconic's SVG Sprite |
||||
|
||||
Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's |
||||
like an icon font, without being a hack. |
||||
|
||||
Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: |
||||
To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for |
||||
each different icon in the* `<use>` *tag.* |
||||
|
||||
``` |
||||
<svg class="icon"> |
||||
<use xlink:href="open-iconic.svg#account-login" class="icon-account-login"></use> |
||||
</svg> |
||||
``` |
||||
|
||||
Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `<svg>` tag with equal width |
||||
and height dimensions. |
||||
|
||||
``` |
||||
.icon { |
||||
width: 16px; |
||||
height: 16px; |
||||
} |
||||
``` |
||||
|
||||
Coloring icons is even easier. All you need to do is set the `fill` rule on the `<use>` tag. |
||||
|
||||
``` |
||||
.icon-account-login { |
||||
fill: #f00; |
||||
} |
||||
``` |
||||
|
||||
To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/). |
||||
|
||||
#### Using Open Iconic's Icon Font... |
||||
|
||||
##### …with Bootstrap |
||||
|
||||
You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}` |
||||
|
||||
``` |
||||
<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet"> |
||||
``` |
||||
|
||||
``` |
||||
<span class="oi oi-icon-name" title="icon name" aria-hidden="true"></span> |
||||
``` |
||||
|
||||
##### …with Foundation |
||||
|
||||
You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}` |
||||
|
||||
``` |
||||
<link href="/open-iconic/font/css/open-iconic-foundation.css" rel="stylesheet"> |
||||
``` |
||||
|
||||
``` |
||||
<span class="fi-icon-name" title="icon name" aria-hidden="true"></span> |
||||
``` |
||||
|
||||
##### …on its own |
||||
|
||||
You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}` |
||||
|
||||
``` |
||||
<link href="/open-iconic/font/css/open-iconic.css" rel="stylesheet"> |
||||
``` |
||||
|
||||
``` |
||||
<span class="oi" data-glyph="icon-name" title="icon name" aria-hidden="true"></span> |
||||
``` |
||||
|
||||
## License |
||||
|
||||
### Icons |
||||
|
||||
All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT). |
||||
|
||||
### Fonts |
||||
|
||||
All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). |
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 59 KiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,18 +0,0 @@
|
||||
Font Awesome Pro License |
||||
------------------------ |
||||
|
||||
Font Awesome Pro is commercial software that requires a paid license. Full |
||||
Font Awesome Pro license: https://fontawesome.com/license. |
||||
|
||||
# Commercial License |
||||
The Font Awesome Pro commercial license allows you to pay for FA Pro once, own |
||||
it, and use it just about everywhere you'd like. |
||||
|
||||
# Attribution |
||||
Attribution is not required by the Font Awesome Pro commercial license. |
||||
|
||||
# Brand Icons |
||||
All brand icons are trademarks of their respective owners. The use of these |
||||
trademarks does not indicate endorsement of the trademark holder by Font |
||||
Awesome, nor vice versa. **Please do not use brand logos for any purpose except |
||||
to represent the company, product, or service to which they refer.** |
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,6 +0,0 @@
|
||||
/*! |
||||
* Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com |
||||
* License - https://fontawesome.com/license (Commercial License) |
||||
* Copyright 2022 Fonticons, Inc. |
||||
*/ |
||||
:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Pro"}@font-face{font-family:"Font Awesome 6 Pro";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Pro";font-weight:900} |
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 2.6 KiB |
@ -1,37 +0,0 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
|
||||
<head> |
||||
<meta charset="utf-8"/> |
||||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/> |
||||
<title>Playground</title> |
||||
<base href="/"/> |
||||
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet"/> |
||||
<link href="css/app.css" rel="stylesheet"/> |
||||
<link href="favicon.png" rel="icon" type="image/png"/> |
||||
<link href="Playground.styles.css" rel="stylesheet"/> |
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"/> |
||||
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet"/> |
||||
<link href="fontawesome-pro-6.1.1-web/css/fontawesome.min.css" rel="stylesheet"/> |
||||
</head> |
||||
|
||||
<body> |
||||
<div id="app"> |
||||
<svg class="loading-progress"> |
||||
<circle cx="50%" cy="50%" r="40%"/> |
||||
<circle cx="50%" cy="50%" r="40%"/> |
||||
</svg> |
||||
<div class="loading-progress-text"></div> |
||||
</div> |
||||
|
||||
<div id="blazor-error-ui"> |
||||
An unhandled error has occurred. |
||||
<a class="reload" href="">Reload</a> |
||||
<a class="dismiss">🗙</a> |
||||
</div> |
||||
<script src="_framework/blazor.webassembly.js"></script> |
||||
<script src="_content/MudBlazor/MudBlazor.min.js"></script> |
||||
<script src="fontawesome-pro-6.1.1-web/js/all.min.js"></script> |
||||
</body> |
||||
|
||||
</html> |
||||
Loading…
Reference in new issue