Blazor: WerksverkaufScanner auf Echtsystem eingestellt, TestRibbon init

This commit is contained in:
Christopher Meinhold 2025-12-18 11:23:39 +01:00
parent 08aa9bf7f3
commit 14a8b6e6f6
118 changed files with 14807 additions and 139 deletions

31
TestRibbon/TestRibbon.sln Normal file
View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36717.8
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestRibbon", "TestRibbon\TestRibbon\TestRibbon.csproj", "{D054A8B7-C3A0-45F4-BED8-72D6E5BFA426}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestRibbon.Client", "TestRibbon\TestRibbon.Client\TestRibbon.Client.csproj", "{E09A355F-B5AC-4FFB-A5E1-1FBA6F2030E6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D054A8B7-C3A0-45F4-BED8-72D6E5BFA426}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D054A8B7-C3A0-45F4-BED8-72D6E5BFA426}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D054A8B7-C3A0-45F4-BED8-72D6E5BFA426}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D054A8B7-C3A0-45F4-BED8-72D6E5BFA426}.Release|Any CPU.Build.0 = Release|Any CPU
{E09A355F-B5AC-4FFB-A5E1-1FBA6F2030E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E09A355F-B5AC-4FFB-A5E1-1FBA6F2030E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E09A355F-B5AC-4FFB-A5E1-1FBA6F2030E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E09A355F-B5AC-4FFB-A5E1-1FBA6F2030E6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4393B670-C7A9-491B-B375-29EBA5C2DB45}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,27 @@
@page "/counter"
@rendermode InteractiveAuto
<PageTitle>Counter</PageTitle>
<h1>Counter</h1>
<div class="counter-block">
<div class="counter-content">
<div class="counter-count">
@currentCount
</div>
<div class="counter-text">
current count
</div>
<div class="counter-block-back"></div>
</div>
<DxButton Click="IncrementCount">Click me</DxButton>
</div>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
}

View File

@ -0,0 +1,37 @@
.counter-block {
display: flex;
padding: 2.5rem 1.5rem 1.5rem 1.5rem;
flex-direction: column;
border-radius: 1rem;
gap: 1.5rem;
justify-content: center;
align-items: center;
width: 16.875rem;
height: 17rem;
position: relative;
}
.counter-block .counter-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.counter-block .counter-count {
font-size: 7.5rem;
font-weight: 400;
line-height: 7.75rem;
}
.counter-block .counter-block-back {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--bs-body-color, var(--DS-color-content-neutral-default-rest));
opacity: 0.05;
border-radius: 1rem;
z-index: -2;
}

View File

@ -0,0 +1,6 @@
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddDevExpressBlazor(options => {
options.SizeMode = DevExpress.Blazor.SizeMode.Medium;
});
await builder.Build().RunAsync();

View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DevExpress.Blazor" Version="25.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.*-*" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,12 @@
@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.JSInterop
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using TestRibbon.Client
@using DevExpress.Blazor

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,27 @@
@using Microsoft.AspNetCore.Mvc.ViewFeatures
@using TestRibbon.Services
@inject IFileVersionProvider FileVersionProvider
@inject DxThemesService ThemesService
<!DOCTYPE html>
<html lang="en" data-bs-theme="@(ThemesService.IsBootstrapDarkActive ? "dark" : null)" data-fluent-darkmode="@(ThemesService.IsFluentDarkModeActive ? "" : null)">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
@DxResourceManager.RegisterTheme(ThemesService.ActiveTheme)
@DxResourceManager.RegisterScripts()
<link href=@AppendVersion("css/site.css") rel="stylesheet" />
<link href=@AppendVersion("TestRibbon.styles.css") rel="stylesheet" />
<HeadOutlet />
</head>
<body class="@(ThemesService.IsFluentActive ? "dxbl-theme-fluent" : null)">
<Routes />
<script src="_framework/blazor.web.js"></script>
</body>
</html>
@code{
private string AppendVersion(string path) => FileVersionProvider.AddFileVersionToPath("/", path);
}

View File

@ -0,0 +1,170 @@
@using DevExpress.Blazor
@using TestRibbon.Data
<div class="overview-navigation card cw-880">
<div class="card-header p-0 demo-bg-transparent">
<DxMenu Orientation="Orientation.Horizontal"
DropDownActionMode="MenuDropDownActionMode.Click"
DisplayMode="MenuDisplayMode.Desktop"
Title="DevExpress Logo"
CollapseItemToIconMode="MenuCollapseItemToIconMode.All"
CollapseItemsToHamburgerMenu="true"
CssClass="w-100"
ItemClick="@((args) => { if(args.ItemInfo.Name == "LogIn") PopupVisible = true; })">
<TitleTemplate>
<div class="icon-logo" role="img" aria-label="@context"></div>
</TitleTemplate>
<Items>
<DxMenuItem Text="Home" IconCssClass="menu-icon-home menu-icon">
<Items>
<DxMenuItem Text="News">
<Items>
<DxMenuItem Text="Explore our newest features" />
<DxMenuItem Text="Website news" />
</Items>
</DxMenuItem>
<DxMenuItem Text="Our Mission" />
<DxMenuItem Text="Our Customers" />
</Items>
</DxMenuItem>
<DxMenuItem Text="Components" IconCssClass="menu-icon-products menu-icon">
<Items>
<DxMenuItem Text="Blazor" />
<DxMenuItem Text="ASP.NET MVC" />
<DxMenuItem Text="ASP.NET Web Forms" />
<DxMenuItem Text="ASP.NET Core" />
<DxMenuItem Text="Blazor" />
<DxMenuItem Text="Bootstrap Web Forms" />
</Items>
</DxMenuItem>
<DxMenuItem Text="Support" IconCssClass="menu-icon-support menu-icon">
<Items>
<DxMenuItem Text="Getting Started" />
<DxMenuItem Text="Documentation" />
<DxMenuItem Text="Support Center" />
<DxMenuItem Text="Code Examples" />
<DxMenuItem Text="Blogs" />
</Items>
</DxMenuItem>
<DxMenuItem CssClass="search-menu-item" Position="ItemPosition.End">
<Template>
<DxSearchBox CssClass="search" aria-label="Search" />
</Template>
</DxMenuItem>
<DxMenuItem title="Log In" Text="Log In" CssClass="notoggle" IconCssClass="menu-icon-user-profile menu-icon" Name="LogIn" Position="ItemPosition.End">
</DxMenuItem>
</Items>
</DxMenu>
</div>
<div class="card-body pt-0 d-flex flex-row">
<div class="pe-3 pt-4" style="min-width: 180px">
<h5 class="d-block ps-2">Controls</h5>
<DxTreeView>
<Nodes>
<DxTreeViewNode Text="Office Inspired" Expanded="true">
<Nodes>
<DxTreeViewNode Text="Grid View" Sel>
</DxTreeViewNode>
<DxTreeViewNode Text="Spreadsheet">
</DxTreeViewNode>
<DxTreeViewNode Text="Rich Text Editor">
</DxTreeViewNode>
<DxTreeViewNode Text="Scheduler">
</DxTreeViewNode>
</Nodes>
</DxTreeViewNode>
<DxTreeViewNode Text="Analytics">
<Nodes>
<DxTreeViewNode Text="Charting">
</DxTreeViewNode>
<DxTreeViewNode Text="Gauges">
</DxTreeViewNode>
<DxTreeViewNode Text="PivotGrid">
</DxTreeViewNode>
</Nodes>
</DxTreeViewNode>
<DxTreeViewNode Text="Navigation">
<Nodes>
<DxTreeViewNode Text="Menu">
</DxTreeViewNode>
<DxTreeViewNode Text="Navigation Bar">
</DxTreeViewNode>
<DxTreeViewNode Text="Tab Control">
</DxTreeViewNode>
<DxTreeViewNode Text="TreeView">
</DxTreeViewNode>
</Nodes>
</DxTreeViewNode>
</Nodes>
</DxTreeView>
</div>
<div class="pt-4 ps-2 d-flex flex-column align-items-end justify-content-between flex-grow-1">
<div class="w-100">
<h5 class="mb-3">@Data[ActivePageIndex].Title</h5>
@{
var descriptionParts = Data[ActivePageIndex].Description.Split("\n");
@foreach (var descriptionPart in descriptionParts)
{
<p class="tm-8">@descriptionPart</p>
}
}
</div>
<div class="w-100 border-top pt-3 d-flex flex-column align-items-end">
<DxPager PageCount="10" VisibleNumericButtonCount="5" @bind-ActivePageIndex="@ActivePageIndex">
</DxPager>
</div>
</div>
</div>
</div>
<DxPopup Width="420px" HorizontalAlignment="HorizontalAlignment.Center" VerticalAlignment="VerticalAlignment.Center"
@bind-Visible="@PopupVisible">
<HeaderContentTemplate>
<h3>Welcome to DevExpress</h3>
</HeaderContentTemplate>
<BodyContentTemplate Context="PopupContext">
<EditForm Model="@UserData" OnValidSubmit="@HandleValidSubmit" Context="EditFormContext">
<DataAnnotationsValidator />
<DxFormLayout>
<DxFormLayoutItem ColSpanMd="12">
<DxTextBox @bind-Text="@UserData.Username" NullText="Username" ClearButtonDisplayMode="DataEditorClearButtonDisplayMode.Auto" />
<div class="text-danger"><ValidationMessage For="@(() => UserData.Username)" /></div>
</DxFormLayoutItem>
<DxFormLayoutItem ColSpanMd="12">
<DxTextBox @bind-Text="@UserData.Password" NullText="Password" Password="true" ClearButtonDisplayMode="DataEditorClearButtonDisplayMode.Auto" />
<div class="text-danger"><ValidationMessage For="@(() => UserData.Password)" /></div>
</DxFormLayoutItem>
<DxFormLayoutItem ColSpanMd="12">
<DxButton CssClass="w-100" Text="Login" RenderStyle="ButtonRenderStyle.Primary" SubmitFormOnClick="true" />
</DxFormLayoutItem>
</DxFormLayout>
</EditForm>
</BodyContentTemplate>
</DxPopup>
@code {
public class NewsData
{
public string Title { get; set; }
public string Description { get; set; }
}
public bool PopupVisible { get; set; }
public int ActivePageIndex { get; set; }
public int PageSize { get; set; } = 2;
public NewsData[] Data = new NewsData[] {
new NewsData() { Title="Vestibulum ut dignissim erat", Description="Nulla eget consequat nulla. Mauris feugiat nisi sem, feugiat ornare nisi bibendum ac. Fusce quis nisi ut massa iaculis maximus et et magna. Fusce at lacus interdum, tempus metus vel, bibendum nunc. Pellentesque vulputate sodales mi, vitae faucibus leo laoreet sit amet. Cras iaculis, purus vestibulum dignissim faucibus, nunc ex eleifend mauris, ut lacinia massa lorem eu sapien. Pellentesque porttitor vehicula ornare.\nEtiam sit amet elit nisi. Cras a pulvinar eros, at semper eros. Vivamus aliquam scelerisque velit, et sodales ex hendrerit ut. Pellentesque egestas enim suscipit erat facilisis, eu accumsan eros porta. Nam pretium arcu semper est euismod maximus. Cras quis lacus libero. Nunc rhoncus mauris ut pharetra lobortis. Nulla risus sapien, semper non vehicula ac, viverra in nisi posuere."},
new NewsData() { Title="Quisque quis dolor finibus", Description="Vivamus quis nulla sit amet neque ullamcorper fringilla. Donec feugiat elit nulla, et efficitur nulla hendrerit aliquam. Vestibulum dictum quam sit amet sagittis sodales. Integer sed risus odio. Nulla accumsan viverra lacus ut porta. Sed pulvinar dui in felis lacinia, vel ultricies metus rutrum. Ut diam lacus, accumsan lobortis feugiat id, consectetur ut tortor. Integer ultricies rhoncus dapibus. Morbi a mi vel neque laoreet fermentum quis a nibh. Nulla a ante sollicitudin, aliquam quam in, faucibus massa. Quisque egestas posuere felis, eu tincidunt tortor. Proin ullamcorper nulla vitae sem convallis bibendum.\nCurabitur sodales eleifend est, efficitur vestibulum ligula. Praesent viverra ultrices enim, sit amet pretium lorem eleifend sed. Proin nibh felis, lacinia ut eleifend vel, dictum id."},
new NewsData() { Title="Cras tincidunt mauris nisi", Description="Vivamus congue arcu et est euismod dignissim. Proin fermentum dui nulla, ac elementum felis convallis ut. Nulla ut dapibus orci. Nam blandit elit id malesuada tempor. Suspendisse potenti. Fusce pretium, tortor non feugiat aliquam, lacus purus feugiat magna, a imperdiet lorem lacus ultrices elit. Sed sodales lacinia tellus, laoreet faucibus justo efficitur in. Nam et commodo ligula. Maecenas cursus justo vel libero gravida, sed lacinia enim fringilla. Etiam euismod, dui vel iaculis lobortis, velit enim pretium lorem, eget ultricies augue lorem nec neque. Cras vel molestie felis, non laoreet ex. Duis enim nisi, eleifend non rhoncus eget, tincidunt ac velit. Phasellus id pulvinar est. Aliquam feugiat, ante eget scelerisque laoreet, tellus arcu finibus metus, vel porta purus nisi vel volutpat."},
new NewsData() { Title="Mauris et dolor ipsum", Description="Quisque malesuada magna sed massa faucibus, tempus mollis risus accumsan. Ut posuere velit sem, ut hendrerit tortor dignissim sed. Phasellus commodo, lectus vitae varius hendrerit, diam enim sagittis massa, ac eleifend tellus sapien vitae lorem. Phasellus euismod varius nisl. In hac habitasse platea dictumst. Aliquam aliquam velit odio, quis elementum quam dapibus nec. Quisque sed massa vitae nunc porttitor sagittis. Aenean nec nisl et nisl pharetra euismod at ut lacus. Cras porttitor ex eu lacinia scelerisque. Quisque facilisis maximus tempus. Pellentesque sem lorem, pulvinar sed commodo sed, lacinia sagittis dui. Phasellus vestibulum dolor eget consectetur placerat.\nQuisque tincidunt metus in scelerisque hendrerit. Ut bibendum nulla eget odio faucibus, id molestie lectus dignissim nullam."},
new NewsData() { Title="Nam vitae mi efficitur", Description="Sed semper eu velit auctor sodales. Aliquam mattis erat eu justo ullamcorper scelerisque. In ut ante vitae dolor hendrerit ultrices condimentum quis velit. Curabitur lobortis erat ligula, ac luctus dui blandit sit amet. Sed vestibulum aliquet nibh in ultrices. Nulla mattis varius est, vitae vehicula massa. Nam non tellus lobortis, ullamcorper quam vel, varius nisl. Cras iaculis tincidunt justo, et bibendum orci commodo sed. Integer nec cursus leo. Sed a tristique mi, vel dictum enim.\nProin odio sapien, posuere non diam ut, vehicula consequat mauris. Aliquam in ultricies orci. Ut ex magna, aliquam gravida tellus sed, interdum semper nibh. Suspendisse at placerat eros. Praesent gravida pharetra velit, vitae tincidunt metus gravida quis. Sed nisl nulla, placerat sit amet pretium sit amet amet."},
new NewsData() { Title="Ut vel finibus arcu", Description="Cras volutpat erat at sagittis bibendum. Ut vel mollis ipsum. Morbi sit amet viverra ante. Praesent vulputate nisi sed nunc mollis iaculis sit amet eu nibh. Sed vel mi sed ante interdum cursus sit amet et leo. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam fermentum, enim sed venenatis euismod, neque massa porttitor nisi, ut tincidunt nulla ante ut purus. Pellentesque sed luctus dui, vel consequat metus. Vivamus tristique fermentum nulla, vel finibus nisl egestas dictum.\nNunc vitae est diam. Nullam odio quam, pellentesque vitae velit ac, vehicula semper lorem. Nulla vitae imperdiet turpis. Donec consectetur, mauris ut luctus porttitor, nisl mi facilisis mauris, quis faucibus sem elit vitae libero. Aliquam dapibus lacus sed diam hendrerit volutpat."},
new NewsData() { Title="Suspendisse molestie dictum accumsan", Description="Sed nec tellus et nisi bibendum convallis ut at massa. Praesent maximus mi a fringilla tincidunt. Vivamus vestibulum egestas lectus at ultricies. Etiam in finibus ipsum. Suspendisse mauris sapien, feugiat eu nulla vel, dapibus commodo nisi. Cras laoreet, tellus rhoncus auctor hendrerit, lectus massa faucibus dolor, sed faucibus nisi lorem a nisi. Ut dictum dolor elit, laoreet gravida elit dignissim tristique. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\nVivamus vestibulum iaculis pellentesque. Morbi auctor ultricies eros, eu laoreet lacus dapibus sit amet. Vivamus ultrices a augue posuere rhoncus. Suspendisse justo nisi, viverra in facilisis vel, laoreet nec lorem. Donec lacus nibh, pharetra fermentum ultricies sed, scelerisque ac libero metus."},
new NewsData() { Title="Cras sollicitudin condimentum orci", Description="Praesent iaculis ex ut odio consequat molestie non eget velit. In sodales nulla sit amet arcu tincidunt vulputate. Praesent sodales libero sit amet nisi dignissim consequat. Praesent massa urna, dapibus at efficitur non, dapibus ut eros. Quisque mattis neque vitae metus tristique efficitur. Donec vulputate sapien sit amet diam pretium, accumsan varius ex pretium. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Vivamus eu tellus at mi dictum iaculis. Quisque imperdiet tempor ante nec elementum. Ut nec interdum purus. Proin at leo malesuada, pharetra lectus ac, interdum dolor. Duis mollis lectus ante, sed molestie est fermentum in. Quisque cursus pharetra ex. Pellentesque ut felis elit. Vivamus vitae tristique nisl, eget porttitor sapien cras amet."},
new NewsData() { Title="Sed turpis sapien, semper", Description="Nulla sit amet felis fringilla, convallis ipsum in, rutrum purus. Donec non dui eu ante tempor dictum. Integer maximus feugiat odio euismod tincidunt. Sed porta elit libero, in rhoncus metus suscipit ac. Morbi ullamcorper neque risus, vulputate molestie velit elementum in. Cras ullamcorper elit ac vehicula porta. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In fringilla velit ac dictum convallis. Suspendisse feugiat ligula tincidunt ipsum aliquet, in congue erat accumsan. Sed ac lacus sit amet purus aliquet laoreet et vitae odio. Nam gravida elit eget arcu efficitur, in pharetra tellus dapibus. Nam ut laoreet mauris. Nullam tempus tempor leo, eget tincidunt est suscipit sed. Morbi varius, augue quis ornare imperdiet, tellus sapien ultricies metus, hendrerit scelerisque posuere."},
new NewsData() { Title="Morbi eu tincidunt magna", Description="Donec eu nibh fermentum, commodo magna dictum, rhoncus orci. Suspendisse convallis malesuada tortor eget luctus. Donec lobortis porta blandit. In venenatis massa id consectetur ornare. Mauris et sem sem. Etiam at urna id nulla ornare finibus. In imperdiet enim non neque congue, ac luctus diam lacinia. Mauris sagittis eget nisi nec viverra. Nullam viverra rutrum tellus sed pretium. Quisque consequat magna diam, in imperdiet tellus faucibus eget. Proin ultrices gravida justo, eu imperdiet tellus dapibus et. Quisque posuere lacus quis consequat rhoncus. In non sollicitudin ex. Quisque pharetra, tortor vitae malesuada pharetra, est enim facilisis mi, vitae aliquet erat velit ac erat. Aenean sagittis, risus nec eleifend mollis, metus sapien rhoncus diam, eget facilisis ipsum ligula eu volutpat."}
};
UserDataBase UserData { get; set; } = new UserDataBase();
void HandleValidSubmit()
{
PopupVisible = false;
}
}

View File

@ -0,0 +1,33 @@
@inherits LayoutComponentBase
@inject NavigationManager NavigationManager
<div>
<DxDrawer PanelWidth="@Width" CssClass="@(CssClass + " mobile")" Mode="@DrawerMode.Overlap" IsOpen="@ToggledSidebar" HeaderTemplate="@DrawerHeader" FooterTemplate="@DrawerFooter" ApplyBackgroundShading="false" ClosedCssClass="panel-closed">
<BodyTemplate>
@DrawerBody
</BodyTemplate>
<TargetContent>
<DxDrawer PanelWidth="@Width" CssClass="@CssClass" Mode="@DrawerMode.Shrink" IsOpen="@(!ToggledSidebar)" HeaderTemplate="@DrawerHeader" FooterTemplate="@DrawerFooter" OpenCssClass="panel-open" >
<BodyTemplate>
@DrawerBody
</BodyTemplate>
<TargetContent>
<div class="shading-copy" />
@DrawerTarget
</TargetContent>
</DxDrawer>
</TargetContent>
</DxDrawer>
</div>
@code {
string Width => "240px";
string CssClass => "navigation-drawer";
[SupplyParameterFromQuery(Name = UrlGenerator.ToggleSidebarName)]
public bool ToggledSidebar { get; set; }
[Parameter] public RenderFragment? DrawerTarget { get; set; }
[Parameter] public RenderFragment? DrawerBody { get; set; }
[Parameter] public RenderFragment? DrawerHeader { get; set; }
[Parameter] public RenderFragment? DrawerFooter { get; set; }
}

View File

@ -0,0 +1,96 @@
::deep .navigation-drawer {
--dxbl-drawer-panel-footer-justify-content: center;
height: 100vh;
max-height: 100%;
}
::deep .navigation-drawer > .dxbl-drawer-panel {
background-image: linear-gradient(180deg, var(--bs-primary, var(--DS-primary-90)) 0%, var(--bs-black, #000) 150%);
}
::deep .navigation-drawer > .dxbl-drawer-content {
height: 100vh;
overflow: auto;
}
::deep .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-header {
border-bottom: none;
padding: 2rem 1rem;
background: none;
}
::deep .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-header > .navigation-drawer-header {
width: 100%;
display: flex;
justify-content: space-between;
}
::deep .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-body {
--dxbl-drawer-panel-body-padding-x: 0;
--dxbl-drawer-panel-body-padding-y: 1rem;
}
::deep .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-footer {
--dxbl-drawer-panel-footer-justify-content: center;
border-top: none;
padding-bottom: 1.5rem;
background: none;
}
::deep .navigation-drawer > .dxbl-drawer-panel {
display: flex;
}
::deep .navigation-drawer.mobile > .dxbl-drawer-panel {
display: none;
}
::deep .navigation-drawer.mobile > .dxbl-drawer-shading {
display: none;
}
@media (max-width: 768px) {
::deep .navigation-drawer > .dxbl-drawer-panel {
display: none;
}
::deep .navigation-drawer.mobile > .dxbl-drawer-panel {
display: flex;
}
::deep .navigation-drawer.mobile > .dxbl-drawer-shading {
display: block;
}
}
::deep .panel-open:not(.mobile) .menu-button {
display: none;
}
@media (max-width: 768px) {
::deep .panel-open:not(.mobile) .menu-button {
display: inline-flex;
}
.mobile-drawer-closed .shading-copy {
display: none;
visibility: hidden;
}
::deep .shading-copy {
background-color: var(--dxbl-drawer-content-shading-bg);
height: 100%;
position: absolute;
transition: opacity ease var(--dxbl-drawer-animation-duration);
visibility: visible;
width: 100%;
z-index: 99;
opacity: var(--dxbl-drawer-content-shading-opacity);
}
::deep .panel-open .shading-copy {
opacity: 0;
visibility: unset;
height: unset;
}
}

View File

@ -0,0 +1,75 @@
@inherits LayoutComponentBase
@using DevExpress.Blazor
<div class="app-shell">
<!-- RIBBON -->
<header class="app-ribbon-host">
<AppRibbon />
</header>
<!-- KALKULATION -->
<div class="calculation-bar">
<DxComboBox Data="@Versions"
Value="@SelectedVersion"
ValueChanged="@((string v) => OnVersionChanged(v))"
ValueExpression="() => SelectedVersion"
Width="220px"
DropDownStyle="DropDownStyle.DropDownList"
AllowUserInput="false" />
<DxComboBox Data="@Scenarios"
Value="@SelectedScenario"
ValueChanged="@((string v) => OnScenarioChanged(v))"
ValueExpression="() => SelectedScenario"
Width="260px"
DropDownStyle="DropDownStyle.DropDownList"
AllowUserInput="false" />
</div>
<!-- CONTENT -->
<main class="app-body">
@Body
</main>
</div>
@code {
List<string> Versions = new()
{
"Vorkalkulation 2024",
"Vorkalkulation 2025"
};
List<string> Scenarios = new()
{
"Vorkalkulation 2024 EUR",
"Vorkalkulation 2024 USD"
};
string SelectedVersion = "Vorkalkulation 2024";
string SelectedScenario = "Vorkalkulation 2024 EUR";
void OnVersionChanged(string value)
{
SelectedVersion = value;
Console.WriteLine($"Version changed: {value}");
}
void OnScenarioChanged(string value)
{
SelectedScenario = value;
Console.WriteLine($"Scenario changed: {value}");
}
}

View File

@ -0,0 +1,83 @@
.page {
height: 100%;
font-family: var(--bs-font-sans-serif, var(--DS-font-family-sans-serif));
}
::deep .content {
overflow: auto;
display: flex;
flex-direction: column;
}
::deep .icon-back {
--icon-mask-image: var(--icon-back-mask-image);
}
::deep .icon-close {
--icon-mask-image: var(--icon-close-mask-image);
}
::deep .icon-menu {
--icon-mask-image: var(--icon-menu-mask-image);
}
::deep .icon-log-in {
--icon-mask-image: var(--icon-log-in-mask-image);
}
::deep .icon-log-out {
--icon-mask-image: var(--icon-log-out-mask-image);
}
::deep .icon-user {
--icon-mask-image: var(--icon-user-mask-image);
}
::deep .docs-icon {
--icon-mask-image: var(--icon-docs-mask-image);
}
::deep .demos-icon {
--icon-mask-image: var(--icon-demos-mask-image);
}
::deep .footer-button:hover .demos-icon {
background-color: var(--dxbl-btn-hover-color);
}
::deep .footer-button:hover .docs-icon {
background-color: var(--dxbl-btn-hover-color);
}
::deep .menu-button:hover .icon {
background-color: var(--dxbl-btn-hover-color);
}
::deep .menu-button-nav:hover .icon {
background-color: var(--dxbl-btn-hover-color);
}
.panel-open .menu-button {
display: inline-flex;
}
.menu-button-nav {
background-image: url("images/close.svg");
width: 1.875rem;
height: 1.875rem;
}
.nav-buttons-container {
display: flex;
gap: 10px;
padding: 2rem 1rem;
}
.nav-buttons-container ::deep .menubutton-float-end {
margin-left: auto;
}
.nav-buttons-container ::deep .dxbl-btn-icon-only {
--dxbl-btn-padding-x: 0.75rem;
--dxbl-btn-padding-y: 0.25rem;
}

View File

@ -0,0 +1,9 @@
<div id="sidebar">
<DxMenu Orientation="@Orientation.Vertical" CssClass="menu">
<Items>
<DxMenuItem NavigateUrl="/" Text="Home" CssClass="menu-item" IconCssClass="icon home-icon"></DxMenuItem>
<DxMenuItem NavigateUrl="/counter" Text="Counter" CssClass="menu-item" IconCssClass="icon counter-icon"></DxMenuItem>
<DxMenuItem NavigateUrl="/weather" Text="Weather" CssClass="menu-item" IconCssClass="icon weather-icon"></DxMenuItem>
</Items>
</DxMenu>
</div>

View File

@ -0,0 +1,82 @@
#sidebar {
min-width: 15rem;
max-width: 15rem;
transition: transform 0.1s ease-out;
height: 100%;
max-height: 100%;
display: block;
background: inherit;
}
.logo {
text-align: center;
}
::deep .menu.display-mobile {
margin-bottom: 2rem;
}
::deep .menu.display-iam {
margin-bottom: 2rem;
}
::deep .menu {
--dxbl-menu-bottom-left-border-radius: 0;
--dxbl-menu-bottom-right-border-radius: 0;
--dxbl-menu-top-left-border-radius: 0;
--dxbl-menu-top-right-border-radius: 0;
background-color: inherit;
}
::deep .menu .dxbl-menu-item-list {
gap: 0.5rem;
}
::deep .menu-item {
color: var(--bs-white, #fff);
}
::deep .icon {
margin-left: 0.5rem;
}
::deep .home-icon {
--icon-mask-image: var(--icon-home-mask-image);
}
::deep .weather-icon {
--icon-mask-image: var(--icon-weather-mask-image);
}
::deep .counter-icon {
--icon-mask-image: var(--icon-counter-mask-image);
}
::deep .settings-icon {
--icon-mask-image: var(--icon-settings-mask-image);
}
::deep .log-in-icon {
--icon-mask-image: var(--icon-log-in-mask-image);
}
::deep .log-out-icon {
--icon-mask-image: var(--icon-log-out-mask-image);
}
::deep .user-icon {
--icon-mask-image: var(--icon-user-mask-image);
}
@media (max-width: 768px) {
#sidebar {
min-width: inherit;
max-width: inherit;
display: block;
}
.logo {
text-align: inherit;
}
}

View File

@ -0,0 +1,36 @@
@page "/Error"
@using System.Diagnostics
<PageTitle>Error</PageTitle>
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@RequestId</code>
</p>
}
<h3>Development Mode</h3>
<p>
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
</p>
<p>
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
It can result in displaying sensitive information from exceptions to end users.
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
and restarting the app.
</p>
@code{
[CascadingParameter]
private HttpContext? HttpContext { get; set; }
private string? RequestId { get; set; }
private bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
protected override void OnInitialized() =>
RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier;
}

View File

@ -0,0 +1,42 @@
@page "/"
<PageTitle>Welcome</PageTitle>
<div class="main-content">
<DxGridLayout CssClass="welcome-gridlayout" RowSpacing="3rem">
<Rows>
<DxGridLayoutRow Height="auto" Areas="header"></DxGridLayoutRow>
<DxGridLayoutRow Height="auto" Areas="cards"></DxGridLayoutRow>
</Rows>
<Items>
<DxGridLayoutItem Area="header" CssClass="title">
<Template>
<div class="title-header-text">Hello World!</div>
<div class="title-content-text">Welcome to your new DevExpress Blazor Application</div>
</Template>
</DxGridLayoutItem>
<DxGridLayoutItem Area="cards" CssClass="welcome-cards">
<Template>
<NavLink class="welcome-card" href="@UrlGenerator.GetUrl("/counter", ToggledSidebar)">
<svg class="welcome-card-img" alt="counter card">
<use href="images/cards.svg#counter"></use>
</svg>
<div class="welcome-card-text">Counter</div>
<div class="welcome-card-back"></div>
</NavLink>
<NavLink class="welcome-card" href="@UrlGenerator.GetUrl("/weather", ToggledSidebar)">
<svg class="welcome-card-img" alt="weather card">
<use href="images/cards.svg#weather"></use>
</svg>
<div class="welcome-card-text">Weather</div>
<div class="welcome-card-back"></div>
</NavLink>
</Template>
</DxGridLayoutItem>
</Items>
</DxGridLayout>
</div>
@code {
[SupplyParameterFromQuery(Name = UrlGenerator.ToggleSidebarName)]
public bool ToggledSidebar { get; set; }
}

View File

@ -0,0 +1,66 @@
::deep .welcome-gridlayout {
margin: auto;
width: auto;
height: auto;
}
::deep .welcome-gridlayout .dxbl-gridlayout-root {
align-content: center;
justify-content: center;
}
::deep .title {
text-align: center;
}
::deep .welcome-cards {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
justify-content: center;
}
::deep .welcome-card {
width: 26.25rem;
height: 15rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.2s;
border-radius: 1rem;
color: var(--bs-link-color, var(--DS-primary-90));
gap: 1.5rem;
text-decoration: none;
position: relative;
}
::deep .welcome-card:hover {
box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}
::deep .welcome-card .welcome-card-img {
width: 6.5rem;
height: 6.5rem;
}
::deep .welcome-card .welcome-card-text {
font-size: 1.75rem;
font-weight: 600;
letter-spacing: 0em;
text-align: center;
text-decoration: unset;
}
::deep .welcome-card .welcome-card-back {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--bs-body-color, var(--DS-color-content-neutral-default-rest));
opacity: 0.05;
border-radius: 1rem;
z-index: -2;
}

View File

@ -0,0 +1,33 @@
@page "/weather"
@using TestRibbon.Services
@rendermode InteractiveServer
@inject WeatherForecastService ForecastService
<PageTitle>Weather</PageTitle>
<h1>Weather</h1>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<DxGrid Data="@forecasts">
<Columns>
<DxGridDataColumn Caption="Date" FieldName="Date" />
<DxGridDataColumn Caption="Temperature (C)" FieldName="TemperatureC" />
<DxGridDataColumn Caption="Temperature (F)" FieldName="TemperatureF" />
<DxGridDataColumn Caption="Summary" FieldName="Summary" />
</Columns>
</DxGrid>
}
@code {
private WeatherForecast[]? forecasts;
protected override async Task OnInitializedAsync()
{
forecasts = await ForecastService.GetForecastAsync(DateOnly.FromDateTime(DateTime.Now));
}
}

View File

@ -0,0 +1,5 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
</Router>

View File

@ -0,0 +1,13 @@
@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.JSInterop
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using TestRibbon
@using TestRibbon.Components
@using TestRibbon.Components.Layout
@using DevExpress.Blazor

View File

@ -0,0 +1,26 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace TestRibbon.Data
{
public class UserDataBase
{
public string Username { get; set; }
public string Password { get; set; }
}
public class UserData : UserDataBase
{
public static DateTime BirthDateNullValue { get; set; } = new DateTime(1970, 1, 1);
public string Email { get; set; }
public string Phone { get; set; }
public DateTime BirthDate { get; set; } = BirthDateNullValue;
public string Occupation { get; set; }
public string Notes { get; set; }
}
}

View File

@ -0,0 +1,29 @@
namespace TestRibbon
{
public partial class Employee
{
public int EmployeeId { get; set; }
public string LastName { get; set; }
public string FirstName { get; set; }
public string Title { get; set; }
public string TitleOfCourtesy { get; set; }
public Nullable<System.DateTime> BirthDate { get; set; }
public Nullable<System.DateTime> HireDate { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string Region { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string HomePhone { get; set; }
public string Extension { get; set; }
public byte[] Photo { get; set; }
public string Notes { get; set; }
public Nullable<int> ReportsTo { get; set; }
public string PhotoPath { get; set; }
public string GroupName { get; set; }
public string Text => $"{FirstName} {LastName} ({Title})";
public string FullName => $"{FirstName} {LastName}";
}
}

View File

@ -0,0 +1,12 @@
The following open source libraries are used and included within thеse sample/demonstration projects:
Bootstrap (Open Source MIT License)
Copyright (c) 2011-2021 Twitter, Inc. / Copyright (c) 2011-2021 The Bootstrap Authors
https://github.com/twbs/bootstrap/blob/main/LICENSE
open-iconic (Open Source MIT License and SIL Open Font License)
Copyright (c) 2014 Waybury
https://github.com/iconic/open-iconic/blob/master/ICON-LICENSE
https://github.com/iconic/open-iconic/blob/master/FONT-LICENSE
The open source libraries included in these sample/demonstration projects are done so pursuant to each individual open source library license and subject to the disclaimers and limitations on liability set forth in each open source library license.

Binary file not shown.

View File

@ -0,0 +1,41 @@
using TestRibbon.Components;
using TestRibbon.Services;
using TestRibbon.Client.Pages;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents()
.AddInteractiveWebAssemblyComponents();
builder.Services.AddDevExpressBlazor(options => {
options.SizeMode = DevExpress.Blazor.SizeMode.Medium;
});
builder.Services.AddSingleton<WeatherForecastService>();
builder.Services.AddScoped<DxThemesService>();
builder.Services.AddMvc();
var app = builder.Build();
// Configure the HTTP request pipeline.
if(app.Environment.IsDevelopment()) {
app.UseWebAssemblyDebugging();
} else {
app.UseExceptionHandler("/Error", createScopeForErrors: true);
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAntiforgery();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode()
.AddInteractiveWebAssemblyRenderMode()
.AddAdditionalAssemblies(typeof(Counter).Assembly)
.AllowAnonymous();
app.Run();

View File

@ -0,0 +1,40 @@
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:3548",
"sslPort": 44391
}
},
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "http://localhost:5171",
"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:7226;http://localhost:5171",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

View File

@ -0,0 +1,47 @@
using DevExpress.Blazor;
namespace TestRibbon.Services;
public static class DxThemes {
public static readonly ITheme FluentLight = Themes.Fluent.Clone(AddFluentTheme);
public static readonly ITheme FluentDark = Themes.Fluent.Clone(properties => {
properties.Mode = ThemeMode.Dark;
AddFluentTheme(properties);
});
public static readonly ITheme BlazingBerry = Themes.BlazingBerry.Clone(AddBootstrapTheme);
public static readonly ITheme BlazingDark = Themes.BlazingDark.Clone(AddBootstrapTheme);
public static readonly ITheme Purple = Themes.Purple.Clone(AddBootstrapTheme);
public static readonly ITheme OfficeWhite = Themes.OfficeWhite.Clone(AddBootstrapTheme);
public static readonly ITheme Bootstrap = Themes.BootstrapExternal.Clone(properties => AddBootstrapExternalTheme("bootstrap", properties));
public static readonly ITheme BootstrapDark = Themes.BootstrapExternal.Clone(properties => AddBootstrapExternalTheme("bootstrap-dark", properties));
public static void AddBootstrapTheme(ThemeProperties properties) {
properties.AddFilePaths($"css/theme-bs.css");
}
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
properties.Name = themeName;
AddBootstrapTheme(properties);
properties.AddFilePaths($"css/bootstrap/bootstrap.min.css");
}
public static void AddFluentTheme(ThemeProperties properties) {
properties.AddFilePaths($"css/theme-fluent.css");
}
}
public class DxThemesService {
public DxThemesService() {
ActiveTheme = DxThemes.Bootstrap;
}
public ITheme ActiveTheme { get; private set; }
public bool IsFluentActive => ActiveTheme == DxThemes.FluentLight || ActiveTheme == DxThemes.FluentDark;
public bool IsBootstrapDarkActive => ActiveTheme == DxThemes.BootstrapDark;
public bool IsFluentDarkModeActive => ActiveTheme == DxThemes.FluentDark;
public bool IsActiveThemeDark => IsBootstrapDarkActive || IsFluentDarkModeActive;
}

View File

@ -0,0 +1,17 @@
using System.Web;
namespace TestRibbon {
public static class UrlGenerator {
public const string ToggleSidebarName = "toggledSidebar";
public static string GetUrl(string baseUrl, bool toggledSidebar) {
return $"{baseUrl}?{ToggleSidebarName}={toggledSidebar}";
}
public static string GetUrl(bool toggledSidebar, string returnUrl) {
var baseUriBuilder = new UriBuilder(returnUrl);
var query = HttpUtility.ParseQueryString(baseUriBuilder.Query);
var baseUrl = baseUriBuilder.Fragment + baseUriBuilder.Host + baseUriBuilder.Path;
return $"{baseUrl}?{ToggleSidebarName}={toggledSidebar}&{query}";
}
}
}

View File

@ -0,0 +1,11 @@
namespace TestRibbon.Services {
public class WeatherForecast {
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}
}

View File

@ -0,0 +1,17 @@
namespace TestRibbon.Services {
public class WeatherForecastService {
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
public Task<WeatherForecast[]> GetForecastAsync(DateOnly startDate) {
var rng = new Random();
return Task.FromResult(Enumerable.Range(1, 20).Select(index => new WeatherForecast {
Date = startDate.AddDays(index),
TemperatureC = rng.Next(-20, 55),
Summary = Summaries[rng.Next(Summaries.Length)]
}).ToArray());
}
}
}

View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DevExpress.Blazor" Version="25.1.4" />
<PackageReference Include="DevExtreme.AspNet.Data" Version="5.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.*-*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestRibbon.Client\TestRibbon.Client.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,44 @@
.menu-icon {
width: var(--dxbl-icon-width);
height: var(--dxbl-icon-height);
min-width: var(--dxbl-icon-width);
min-height: var(--dxbl-icon-height);
background-size: contain;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
background-position: center center;
background-color: currentColor;
opacity: 0.7;
}
.menu-icon-home {
mask-image: var(--dxbl-icon-home);
-webkit-mask-image: var(--dxbl-icon-home);
}
.menu-icon-support {
mask-image: var(--dxbl-icon-support);
-webkit-mask-image: var(--dxbl-icon-support);
}
.menu-icon-products {
mask-image: var(--dxbl-icon-products);
-webkit-mask-image: var(--dxbl-icon-products);
}
.menu-icon-user-profile {
mask-image: var(--dxbl-icon-user-profile);
-webkit-mask-image: var(--dxbl-icon-user-profile);
}
.icon-logo {
display: flex;
height: 20px;
width: 120px;
opacity: 0.7;
background-color: currentColor;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
mask-image: url("../images/icons/logo-monochrome.svg");
-webkit-mask-image: url("../images/icons/logo-monochrome.svg");
}

View File

@ -0,0 +1,86 @@
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.

View File

@ -0,0 +1,21 @@
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.

View File

@ -0,0 +1,114 @@
[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&mdash;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&mdash;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

View File

@ -0,0 +1,543 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2014-7-1: Created.
-->
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
Created by FontForge 20120731 at Tue Jul 1 20:39:22 2014
By P.J. Onori
Created by P.J. Onori with FontForge 2.0 (http://fontforge.sf.net)
</metadata>
<defs>
<font id="open-iconic" horiz-adv-x="800" >
<font-face
font-family="Icons"
font-weight="400"
font-stretch="normal"
units-per-em="800"
panose-1="2 0 5 3 0 0 0 0 0 0"
ascent="800"
descent="0"
bbox="-0.5 -101 802 800.126"
underline-thickness="50"
underline-position="-100"
unicode-range="U+E000-E0DE"
/>
<missing-glyph />
<glyph glyph-name="" unicode="&#xe000;"
d="M300 700h500v-700h-500v100h400v500h-400v100zM400 500l200 -150l-200 -150v100h-400v100h400v100z" />
<glyph glyph-name="1" unicode="&#xe001;"
d="M300 700h500v-700h-500v100h400v500h-400v100zM200 500v-100h400v-100h-400v-100l-200 150z" />
<glyph glyph-name="2" unicode="&#xe002;"
d="M350 700c193 0 350 -157 350 -350v-50h100l-200 -200l-200 200h100v50c0 138 -112 250 -250 250s-250 -112 -250 -250c0 193 157 350 350 350z" />
<glyph glyph-name="3" unicode="&#xe003;"
d="M450 700c193 0 350 -157 350 -350c0 138 -112 250 -250 250s-250 -112 -250 -250v-50h100l-200 -200l-200 200h100v50c0 193 157 350 350 350z" />
<glyph glyph-name="4" unicode="&#xe004;"
d="M0 700h800v-100h-800v100zM100 500h600v-100h-600v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" />
<glyph glyph-name="5" unicode="&#xe005;"
d="M0 700h800v-100h-800v100zM0 500h600v-100h-600v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" />
<glyph glyph-name="6" unicode="&#xe006;"
d="M0 700h800v-100h-800v100zM200 500h600v-100h-600v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" />
<glyph glyph-name="7" unicode="&#xe007;"
d="M400 700c75 0 146 -23 206 -59l-75 -225l-322 234c57 31 122 50 191 50zM125 588l191 -138l-310 -222c-4 24 -6 47 -6 72c0 114 49 215 125 288zM688 575c69 -72 112 -168 112 -275c0 -35 -8 -68 -16 -100h-218zM216 253l112 -347c-128 23 -232 109 -287 222zM372 100
h372c-64 -109 -177 -185 -310 -197z" />
<glyph glyph-name="8" unicode="&#xe008;" horiz-adv-x="600"
d="M200 800h100v-500h200l-247 -300l-253 300h200v500z" />
<glyph glyph-name="9" unicode="&#xe009;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 700v-300h-200l300 -300l300 300h-200v300h-200z" />
<glyph glyph-name="a" unicode="&#xe00a;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300l300 -300v200h300v200h-300v200z" />
<glyph glyph-name="b" unicode="&#xe00b;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700v-200h-300v-200h300v-200l300 300z" />
<glyph glyph-name="c" unicode="&#xe00c;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300h200v-300h200v300h200z" />
<glyph glyph-name="d" unicode="&#xe00d;"
d="M300 600v-200h500v-100h-500v-200l-300 247z" />
<glyph glyph-name="e" unicode="&#xe00e;"
d="M500 600l300 -247l-300 -253v200h-500v100h500v200z" />
<glyph glyph-name="f" unicode="&#xe00f;" horiz-adv-x="600"
d="M200 800h200v-500h200l-297 -300l-303 300h200v500z" />
<glyph glyph-name="10" unicode="&#xe010;"
d="M300 700v-200h500v-200h-500v-200l-300 297z" />
<glyph glyph-name="11" unicode="&#xe011;"
d="M500 700l300 -297l-300 -303v200h-500v200h500v200z" />
<glyph glyph-name="12" unicode="&#xe012;" horiz-adv-x="600"
d="M297 800l303 -300h-200v-500h-200v500h-200z" />
<glyph glyph-name="13" unicode="&#xe013;" horiz-adv-x="600"
d="M247 800l253 -300h-200v-500h-100v500h-200z" />
<glyph glyph-name="14" unicode="&#xe014;"
d="M400 800h100v-800h-100v800zM200 700h100v-600h-100v600zM600 600h100v-400h-100v400zM0 500h100v-200h-100v200z" />
<glyph glyph-name="15" unicode="&#xe015;"
d="M116 600l72 -72c-54 -54 -88 -126 -88 -209s34 -159 88 -213l-72 -72c-72 72 -116 175 -116 285s44 209 116 281zM684 600c72 -72 116 -171 116 -281s-44 -213 -116 -285l-72 72c54 54 88 130 88 213s-34 155 -88 209zM259 460l69 -72c-18 -18 -28 -41 -28 -69
s10 -54 28 -72l-69 -72c-36 36 -59 89 -59 144s23 105 59 141zM541 459c36 -36 59 -85 59 -140s-23 -108 -59 -144l-69 72c18 18 28 44 28 72s-10 51 -28 69z" />
<glyph glyph-name="16" unicode="&#xe016;" horiz-adv-x="400"
d="M200 800c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM100 319c31 -11 65 -19 100 -19s68 8 100 19v-319l-100 100l-100 -100v319z" />
<glyph glyph-name="17" unicode="&#xe017;"
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300c0 -66 21 -126 56 -175l419 419c-49 35 -109 56 -175 56zM644 575l-419 -419c49 -35 109 -56 175 -56c166 0 300 134 300 300
c0 66 -21 126 -56 175z" />
<glyph glyph-name="18" unicode="&#xe018;"
d="M0 700h100v-600h700v-100h-800v700zM500 700h200v-500h-200v500zM200 500h200v-300h-200v300z" />
<glyph glyph-name="19" unicode="&#xe019;"
d="M397 800c13 1 23 -4 34 -13c2 -2 214 -254 241 -287h128v-100h-100v-366c0 -18 -16 -34 -34 -34h-532c-18 0 -34 16 -34 34v366h-100v100h128l234 281c9 11 22 18 35 19zM400 672l-144 -172h288zM250 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50
v100c0 28 -22 50 -50 50zM550 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50v100c0 28 -22 50 -50 50z" />
<glyph glyph-name="1a" unicode="&#xe01a;"
d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9zM100 600v-400h500v400h-500z" />
<glyph glyph-name="1b" unicode="&#xe01b;"
d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9z" />
<glyph glyph-name="1c" unicode="&#xe01c;"
d="M92 650c0 23 19 50 45 50h3h5h5h500c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-141c9 -17 120 -231 166 -309c16 -26 34 -61 34 -106c0 -39 -15 -77 -41 -103h-3c-26 -25 -62 -41 -100 -41h-512c-39 0 -77 15 -103 41s-41 64 -41 103c0 46 18 80 34 106
c46 78 157 292 166 309v141h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51zM500 600h-200v-162l-6 -10s-63 -123 -119 -228h450c-56 105 -119 228 -119 228l-6 10v162z" />
<glyph glyph-name="1d" unicode="&#xe01d;"
d="M400 800c110 0 200 -90 200 -200c0 -104 52 -198 134 -266c41 -34 66 -82 66 -134h-800c0 52 25 100 66 134c82 68 134 162 134 266c0 110 90 200 200 200zM300 100h200c0 -55 -45 -100 -100 -100s-100 45 -100 100z" />
<glyph glyph-name="1e" unicode="&#xe01e;" horiz-adv-x="600"
d="M150 800h50l350 -250l-225 -147l225 -153l-350 -250h-50v250l-75 -75l-75 75l150 150l-150 150l75 75l75 -75v250zM250 650v-200l150 100zM250 350v-200l150 100z" />
<glyph glyph-name="1f" unicode="&#xe01f;"
d="M0 800h500c110 0 200 -90 200 -200c0 -47 -17 -91 -44 -125c85 -40 144 -125 144 -225c0 -138 -112 -250 -250 -250h-550v100c55 0 100 45 100 100v400c0 55 -45 100 -100 100v100zM300 700v-200h100c55 0 100 45 100 100s-45 100 -100 100h-100zM300 400v-300h150
c83 0 150 67 150 150s-67 150 -150 150h-150z" />
<glyph glyph-name="20" unicode="&#xe020;" horiz-adv-x="600"
d="M300 800v-300h200l-300 -500v300h-200z" />
<glyph glyph-name="21" unicode="&#xe021;"
d="M100 800h300v-300l100 100l100 -100v300h50c28 0 50 -22 50 -50v-550h-550c-28 0 -50 -22 -50 -50s22 -50 50 -50h550v-100h-550c-83 0 -150 67 -150 150v550l3 19c8 39 39 70 78 78z" />
<glyph glyph-name="22" unicode="&#xe022;" horiz-adv-x="400"
d="M0 800h400v-800l-200 200l-200 -200v800z" />
<glyph glyph-name="23" unicode="&#xe023;"
d="M0 800h800v-100h-800v100zM0 600h300v-103h203v103h297v-591c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v591z" />
<glyph glyph-name="24" unicode="&#xe024;"
d="M300 800h200c55 0 100 -45 100 -100v-100h191c6 0 9 -3 9 -9v-241c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v241c0 6 3 9 9 9h191v100c0 55 45 100 100 100zM300 700v-100h200v100h-200zM0 209c16 -6 32 -9 50 -9h700c18 0 34 3 50 9v-200c0 -6 -3 -9 -9 -9h-782
c-6 0 -9 3 -9 9v200z" />
<glyph glyph-name="25" unicode="&#xe025;" horiz-adv-x="600"
d="M300 800c58 0 110 -16 147 -53s53 -89 53 -147h-100c0 39 -11 61 -25 75s-36 25 -75 25c-35 0 -55 -10 -72 -31s-28 -55 -28 -94c0 -51 20 -107 28 -175h172v-100h-178c-14 -60 -49 -127 -113 -200h491v-100h-600v122l16 12c69 69 95 121 106 166h-122v100h125
c-8 50 -25 106 -25 175c0 58 16 114 50 156c34 43 88 69 150 69z" />
<glyph glyph-name="26" unicode="&#xe026;"
d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-700c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v700v2c0 20 15 42 34 48zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50zM350 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h300c28 0 50 22 50 50
s-22 50 -50 50h-300zM100 400v-400h600v400h-600z" />
<glyph glyph-name="27" unicode="&#xe027;"
d="M744 797l6 -3l44 -44c4 -4 3 -8 0 -12l-266 -375l-15 -13l-25 -12c-23 72 -78 127 -150 150l12 25l13 15l375 266zM266 400c74 0 134 -60 134 -134c0 -147 -119 -266 -266 -266c-48 0 -95 12 -134 34c80 46 134 133 134 232c0 74 58 134 132 134z" />
<glyph glyph-name="28" unicode="&#xe028;"
d="M9 451c0 23 19 50 46 50c8 0 19 -3 26 -7l131 -66l29 22c-79 81 -1 250 118 250s197 -167 119 -250l28 -22l131 66c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-115 -56c9 -16 19 -33 25 -50h68c28 0 50 -22 50 -50s-22 -50 -50 -50h-50
c0 -23 -2 -45 -6 -66l78 -40c21 -5 37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11l-65 35c-24 -46 -62 -86 -103 -110c-35 19 -60 45 -60 72v135v4v5v6v5v5v87c0 28 -22 50 -50 50c-24 0 -45 -17 -50 -40c1 -3 1 -8 1 -11s0 -8 -1 -11v-82v-4v-5v-144
c0 -28 -24 -53 -59 -72c-41 25 -79 64 -103 110l-66 -35c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49l78 40c-4 21 -6 43 -6 66h-50h-5c-28 0 -50 22 -50 50c0 26 22 50 50 50h5h69c6 17 16 34 25 50l-116 56c-16 7 -28 27 -28 45z" />
<glyph glyph-name="29" unicode="&#xe029;"
d="M600 700h91c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-91v600zM210 503l290 147v-500l-250 125v-3c-15 0 -25 -8 -28 -22l75 -178c11 -25 0 -58 -25 -69s-58 0 -69 25l-103 272h-91c-6 0 -9 3 -9 9v182c0 6 3 9 9 9h182z" />
<glyph glyph-name="2a" unicode="&#xe02a;"
d="M9 800h682c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM100 700v-200h500v200h-500zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-300h100v300h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" />
<glyph glyph-name="2b" unicode="&#xe02b;"
d="M0 800h700v-200h-700v200zM0 500h700v-491c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v491zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" />
<glyph glyph-name="2c" unicode="&#xe02c;"
d="M409 800h182c6 0 10 -4 12 -9l94 -182c2 -5 6 -9 12 -9h82c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v441c0 83 67 150 150 150h141c6 0 10 4 12 9l94 182c2 5 6 9 12 9zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z
M500 500c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM500 400c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" />
<glyph glyph-name="2d" unicode="&#xe02d;"
d="M0 600h800l-400 -400z" />
<glyph glyph-name="2e" unicode="&#xe02e;" horiz-adv-x="400"
d="M400 800v-800l-400 400z" />
<glyph glyph-name="2f" unicode="&#xe02f;" horiz-adv-x="400"
d="M0 800l400 -400l-400 -400v800z" />
<glyph glyph-name="30" unicode="&#xe030;"
d="M400 600l400 -400h-800z" />
<glyph glyph-name="31" unicode="&#xe031;"
d="M0 550c0 23 20 50 46 50h3h5h4h200c17 0 37 -13 44 -28l38 -72h444c14 0 19 -12 15 -25l-81 -250c-4 -13 -21 -25 -35 -25h-350c-14 0 -30 12 -34 25c-27 83 -54 167 -81 250l-10 25h-150c-2 0 -5 -1 -7 -1c-28 0 -51 23 -51 51zM358 100c28 0 50 -22 50 -50
s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM658 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
<glyph glyph-name="32" unicode="&#xe032;"
d="M0 700h500v-100h-300v-300h-100l-100 -100v500zM300 500h500v-500l-100 100h-400v400z" />
<glyph glyph-name="33" unicode="&#xe033;"
d="M641 700l143 -141l-493 -493c-71 76 -146 148 -219 222l-72 71l141 141c50 -51 101 -101 153 -150c116 117 234 231 347 350z" />
<glyph glyph-name="34" unicode="&#xe034;"
d="M150 600l250 -250l250 250l150 -150l-400 -400l-400 400z" />
<glyph glyph-name="35" unicode="&#xe035;" horiz-adv-x="600"
d="M400 800l150 -150l-250 -250l250 -250l-150 -150l-400 400z" />
<glyph glyph-name="36" unicode="&#xe036;" horiz-adv-x="600"
d="M150 800l400 -400l-400 -400l-150 150l250 250l-250 250z" />
<glyph glyph-name="37" unicode="&#xe037;"
d="M400 600l400 -400l-150 -150l-250 250l-250 -250l-150 150z" />
<glyph glyph-name="38" unicode="&#xe038;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM600 622l-250 -250l-100 100l-72 -72l172 -172l322 322z" />
<glyph glyph-name="39" unicode="&#xe039;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM250 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" />
<glyph glyph-name="3a" unicode="&#xe03a;"
d="M350 800c28 0 50 -22 50 -50v-50h75c14 0 25 -11 25 -25v-75h-300v75c0 14 11 25 25 25h75v50c0 28 22 50 50 50zM25 700h75v-200h500v200h75c14 0 25 -11 25 -25v-650c0 -14 -11 -25 -25 -25h-650c-14 0 -25 11 -25 25v650c0 14 11 25 25 25z" />
<glyph glyph-name="3b" unicode="&#xe03b;"
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM350 600h100v-181c23 -24 47 -47 72 -69l-72 -72c-27 30 -55 59 -84 88l-16 12
v222z" />
<glyph glyph-name="3c" unicode="&#xe03c;"
d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-191v50c0 83 -67 150 -150 150s-150 -67 -150 -150v-50h-272c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM434 400h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1
v-150h150l-200 -200l-200 200h150v150v2c0 20 15 42 34 48z" />
<glyph glyph-name="3d" unicode="&#xe03d;"
d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-141l-200 200l-200 -200h-222c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM450 350l250 -250h-200v-50c0 -28 -22 -50 -50 -50s-50 22 -50 50v50h-200z" />
<glyph glyph-name="3e" unicode="&#xe03e;"
d="M450 700c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200s90 200 200 200c23 114 129 200 250 200z" />
<glyph glyph-name="3f" unicode="&#xe03f;"
d="M250 800c82 0 154 -40 200 -100c-143 0 -270 -85 -325 -209c-36 -10 -70 -25 -100 -47c-16 33 -25 67 -25 106c0 138 112 250 250 250zM450 600c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200
s90 200 200 200c23 114 129 200 250 200z" />
<glyph glyph-name="40" unicode="&#xe040;"
d="M500 700h100l-300 -600h-100zM100 600h100l-100 -200l100 -200h-100l-100 200zM600 600h100l100 -200l-100 -200h-100l100 200z" />
<glyph glyph-name="41" unicode="&#xe041;"
d="M350 800h100l50 -119l28 -12l119 50l72 -72l-50 -119l12 -28l119 -50v-100l-119 -50l-12 -28l50 -119l-72 -72l-119 50l-28 -12l-50 -119h-100l-50 119l-28 12l-119 -50l-72 72l50 119l-12 28l-119 50v100l119 50l12 28l-50 119l72 72l119 -50l28 12zM400 550
c-83 0 -150 -67 -150 -150s67 -150 150 -150s150 67 150 150s-67 150 -150 150z" />
<glyph glyph-name="42" unicode="&#xe042;"
d="M0 800h800v-200h-800v200zM200 500h400l-200 -200zM0 100h800v-100h-800v100z" />
<glyph glyph-name="43" unicode="&#xe043;"
d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM500 600v-400l-200 200z" />
<glyph glyph-name="44" unicode="&#xe044;"
d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM300 600l200 -200l-200 -200v400z" />
<glyph glyph-name="45" unicode="&#xe045;"
d="M0 800h800v-100h-800v100zM400 500l200 -200h-400zM0 200h800v-200h-800v200z" />
<glyph glyph-name="46" unicode="&#xe046;"
d="M150 700c83 0 150 -67 150 -150v-50h100v50c0 83 67 150 150 150s150 -67 150 -150s-67 -150 -150 -150h-50v-100h50c83 0 150 -67 150 -150s-67 -150 -150 -150s-150 67 -150 150v50h-100v-50c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150h50v100h-50
c-83 0 -150 67 -150 150s67 150 150 150zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h50v50c0 28 -22 50 -50 50zM550 600c-28 0 -50 -22 -50 -50v-50h50c28 0 50 22 50 50s-22 50 -50 50zM300 400v-100h100v100h-100zM150 200c-28 0 -50 -22 -50 -50s22 -50 50 -50
s50 22 50 50v50h-50zM500 200v-50c0 -28 22 -50 50 -50s50 22 50 50s-22 50 -50 50h-50z" />
<glyph glyph-name="47" unicode="&#xe047;"
d="M0 791c0 5 4 9 9 9h782c6 0 9 -4 9 -10v-790l-200 200h-591c-6 0 -9 3 -9 9v582z" />
<glyph glyph-name="48" unicode="&#xe048;"
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM600 600l-100 -300l-300 -100l100 300zM400 450c-28 0 -50 -22 -50 -50
s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
<glyph glyph-name="49" unicode="&#xe049;"
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700v-600c166 0 300 134 300 300s-134 300 -300 300z" />
<glyph glyph-name="4a" unicode="&#xe04a;"
d="M0 800h800v-100h-800v100zM0 600h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100zM750 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
<glyph glyph-name="4b" unicode="&#xe04b;"
d="M25 700h750c14 0 25 -11 25 -25v-75h-800v75c0 14 11 25 25 25zM0 500h800v-375c0 -14 -11 -25 -25 -25h-750c-14 0 -25 11 -25 25v375zM100 300v-100h100v100h-100zM300 300v-100h100v100h-100z" />
<glyph glyph-name="4c" unicode="&#xe04c;"
d="M100 800h100v-100h450l100 100l50 -50l-100 -100v-450h100v-100h-100v-100h-100v100h-500v500h-100v100h100v100zM200 600v-350l350 350h-350zM600 550l-350 -350h350v350z" />
<glyph glyph-name="4d" unicode="&#xe04d;"
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z
M200 452c0 20 15 42 34 48h3h3h8c12 0 28 -7 36 -16l91 -90l25 6c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100l6 25l-90 91c-9 8 -16 24 -16 36zM550 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
<glyph glyph-name="4e" unicode="&#xe04e;"
d="M300 800h200v-300h200l-300 -300l-300 300h200v300zM0 100h800v-100h-800v100z" />
<glyph glyph-name="4f" unicode="&#xe04f;"
d="M0 800h800v-100h-800v100zM400 600l300 -300h-200v-300h-200v300h-200z" />
<glyph glyph-name="50" unicode="&#xe050;"
d="M200 700h600v-600h-600l-200 300zM350 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" />
<glyph glyph-name="51" unicode="&#xe051;"
d="M400 700c220 0 400 -180 400 -400h-100c0 166 -134 300 -300 300s-300 -134 -300 -300h-100c0 220 180 400 400 400zM341 491l59 -88l59 88c81 -25 141 -101 141 -191c0 -110 -90 -200 -200 -200s-200 90 -200 200c0 90 60 166 141 191z" />
<glyph glyph-name="52" unicode="&#xe052;"
d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300zM100 600v-100h100v100h-100zM100 400v-100h100v100h-100zM100 200v-100h400v100h-400z" />
<glyph glyph-name="53" unicode="&#xe053;" horiz-adv-x="600"
d="M200 700h100v-100h75c30 0 58 -6 81 -22s44 -44 44 -78v-100h-100v94c-4 3 -13 6 -25 6h-250c-14 0 -25 -11 -25 -25v-50c0 -15 20 -40 34 -44l257 -65c66 -16 109 -73 109 -141v-50c0 -68 -57 -125 -125 -125h-75v-100h-100v100h-75c-30 0 -58 6 -81 22s-44 44 -44 78
v100h100v-94c4 -3 13 -6 25 -6h250c14 0 25 11 25 25v50c0 15 -20 40 -34 44l-257 65c-66 16 -109 73 -109 141v50c0 68 57 125 125 125h75v100z" />
<glyph glyph-name="54" unicode="&#xe054;"
d="M0 700h300v-300l-300 -300v600zM500 700h300v-300l-300 -300v600z" />
<glyph glyph-name="55" unicode="&#xe055;"
d="M300 700v-600h-300v300zM800 700v-600h-300v300z" />
<glyph glyph-name="56" unicode="&#xe056;"
d="M300 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300zM800 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300z" />
<glyph glyph-name="57" unicode="&#xe057;"
d="M0 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300zM500 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300z" />
<glyph glyph-name="58" unicode="&#xe058;" horiz-adv-x="600"
d="M300 800l34 -34c11 -11 266 -270 266 -488c0 -165 -135 -300 -300 -300s-300 135 -300 300c0 218 255 477 266 488zM150 328c-28 0 -50 -22 -50 -50c0 -110 90 -200 200 -200c28 0 50 22 50 50s-22 50 -50 50c-55 0 -100 45 -100 100c0 28 -22 50 -50 50z" />
<glyph glyph-name="59" unicode="&#xe059;"
d="M400 800l400 -500h-800zM0 200h800v-200h-800v200z" />
<glyph glyph-name="5a" unicode="&#xe05a;" horiz-adv-x="600"
d="M300 800l300 -300h-600zM0 300h600l-300 -300z" />
<glyph glyph-name="5b" unicode="&#xe05b;"
d="M0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200z" />
<glyph glyph-name="5c" unicode="&#xe05c;"
d="M0 700h800v-100l-400 -200l-400 200v100zM0 500l400 -200l400 200v-400h-800v400z" />
<glyph glyph-name="5d" unicode="&#xe05d;"
d="M400 800l400 -200v-600h-800v600zM400 688l-300 -150v-188l300 -150l300 150v188zM200 500h400v-100l-200 -100l-200 100v100z" />
<glyph glyph-name="5e" unicode="&#xe05e;"
d="M600 700c69 0 134 -19 191 -50l-16 -106c-49 35 -109 56 -175 56c-131 0 -240 -84 -281 -200h331l-16 -100h-334c0 -36 8 -68 19 -100h297l-16 -100h-222c55 -61 133 -100 222 -100c78 0 147 30 200 78v-122c-59 -35 -127 -56 -200 -56c-147 0 -274 82 -344 200h-256
l19 100h197c-8 32 -16 66 -16 100h-200l25 100h191c45 172 198 300 384 300z" />
<glyph glyph-name="5f" unicode="&#xe05f;"
d="M0 700h700v-100h-700v100zM0 500h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100z" />
<glyph glyph-name="60" unicode="&#xe060;"
d="M0 800h800v-100h-800v100zM200 600h400l-200 -200zM0 200h800v-200h-800v200z" />
<glyph glyph-name="61" unicode="&#xe061;"
d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM200 600l200 -200l-200 -200v400z" />
<glyph glyph-name="62" unicode="&#xe062;"
d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM600 600v-400l-200 200z" />
<glyph glyph-name="63" unicode="&#xe063;"
d="M0 800h800v-200h-800v200zM400 400l200 -200h-400zM0 100h800v-100h-800v100z" />
<glyph glyph-name="64" unicode="&#xe064;"
d="M0 800h200v-100h-100v-600h600v100h100v-200h-800v800zM400 800h400v-400l-150 150l-250 -250l-100 100l250 250z" />
<glyph glyph-name="65" unicode="&#xe065;"
d="M403 700c247 0 397 -300 397 -300s-150 -300 -397 -300c-253 0 -403 300 -403 300s150 300 403 300zM400 600c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM400 500c10 0 19 -3 28 -6c-16 -8 -28 -24 -28 -44c0 -28 22 -50 50 -50
c20 0 36 12 44 28c3 -9 6 -18 6 -28c0 -55 -45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" />
<glyph glyph-name="66" unicode="&#xe066;" horiz-adv-x="900"
d="M331 700h3h3c3 1 7 1 10 1c12 0 29 -8 37 -17l94 -93l66 65c57 57 155 57 212 0c58 -58 58 -154 0 -212l-65 -66l93 -94c10 -8 18 -25 18 -38c0 -28 -22 -50 -50 -50c-13 0 -32 9 -40 20l-62 65l-381 -381h-269v272l375 381l-63 63c-9 8 -16 24 -16 36c0 20 16 42 35 48z
M447 481l-313 -315l128 -132l316 316z" />
<glyph glyph-name="67" unicode="&#xe067;"
d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300z" />
<glyph glyph-name="68" unicode="&#xe068;"
d="M200 800c0 0 200 -100 200 -300s-298 -302 -200 -500c0 0 -200 100 -200 300s300 300 200 500zM500 500c0 0 200 -100 200 -300c0 -150 -60 -200 -100 -200h-300c0 200 300 300 200 500z" />
<glyph glyph-name="69" unicode="&#xe069;"
d="M0 800h100v-800h-100v800zM200 800h300v-100h300l-200 -203l200 -197h-400v100h-200v400z" />
<glyph glyph-name="6a" unicode="&#xe06a;" horiz-adv-x="400"
d="M150 800h150l-100 -200h200l-150 -300h150l-300 -300l-100 300h134l66 200h-200z" />
<glyph glyph-name="6b" unicode="&#xe06b;"
d="M0 800h300v-100h500v-100h-800v200zM0 500h800v-450c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v450z" />
<glyph glyph-name="6c" unicode="&#xe06c;"
d="M150 800c83 0 150 -67 150 -150c0 -66 -41 -121 -100 -141v-118c15 5 33 9 50 9h200c28 0 50 22 50 50v59c-59 20 -100 75 -100 141c0 83 67 150 150 150s150 -67 150 -150c0 -66 -41 -121 -100 -141v-59c0 -82 -68 -150 -150 -150h-200c-14 0 -25 -7 -34 -16
c50 -24 84 -74 84 -134c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 66 41 121 100 141v218c-59 20 -100 75 -100 141c0 83 67 150 150 150z" />
<glyph glyph-name="6d" unicode="&#xe06d;"
d="M0 800h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400zM500 400l150 -150l150 150v-400h-400l150 150l-150 150z" />
<glyph glyph-name="6e" unicode="&#xe06e;"
d="M100 800l150 -150l150 150v-400h-400l150 150l-150 150zM400 400h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400z" />
<glyph glyph-name="6f" unicode="&#xe06f;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700c-56 0 -108 -17 -153 -44l22 -19c33 -18 13 -48 -13 -59c-30 -13 -77 10 -65 -41c13 -55 -27 -3 -47 -15c-42 -26 49 -152 31 -156l-59 34c-8 0 -13 -5 -16 -10
c1 -30 10 -57 19 -84c28 -11 77 -2 100 -25c47 -28 97 -115 75 -159c34 -13 68 -22 106 -22c101 0 193 48 247 125c3 24 -8 44 -50 44c-69 0 -156 13 -153 97c2 46 101 108 66 143c-30 30 12 39 12 66c0 37 -65 32 -69 50s20 36 41 56c-30 10 -60 19 -94 19zM631 591
c-38 -11 -94 -35 -87 -53c6 -15 52 -1 65 -13c11 -10 16 -59 44 -31l22 22v3c-11 26 -26 50 -44 72z" />
<glyph glyph-name="70" unicode="&#xe070;"
d="M703 800l97 -100l-400 -400l-100 100l-200 -203l-100 100l300 303l100 -100zM0 100h800v-100h-800v100z" />
<glyph glyph-name="71" unicode="&#xe071;"
d="M0 700h100v-100h-100v100zM200 700h100v-100h-100v100zM400 700h100v-100h-100v100zM600 700h100v-100h-100v100zM0 500h100v-100h-100v100zM200 500h100v-100h-100v100zM400 500h100v-100h-100v100zM600 500h100v-100h-100v100zM0 300h100v-100h-100v100zM200 300h100
v-100h-100v100zM400 300h100v-100h-100v100zM600 300h100v-100h-100v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100zM600 100h100v-100h-100v100z" />
<glyph glyph-name="72" unicode="&#xe072;"
d="M0 800h200v-200h-200v200zM300 800h200v-200h-200v200zM600 800h200v-200h-200v200zM0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200zM0 200h200v-200h-200v200zM300 200h200v-200h-200v200zM600 200h200v-200h-200v200z" />
<glyph glyph-name="73" unicode="&#xe073;"
d="M0 800h300v-300h-300v300zM500 800h300v-300h-300v300zM0 300h300v-300h-300v300zM500 300h300v-300h-300v300z" />
<glyph glyph-name="74" unicode="&#xe074;"
d="M19 800h662c11 0 19 -8 19 -19v-331c0 -28 -22 -50 -50 -50h-600c-28 0 -50 22 -50 50v331c0 11 8 19 19 19zM0 309c16 -6 32 -9 50 -9h600c18 0 34 3 50 9v-290c0 -11 -8 -19 -19 -19h-662c-11 0 -19 8 -19 19v290zM550 200c-28 0 -50 -22 -50 -50s22 -50 50 -50
s50 22 50 50s-22 50 -50 50z" />
<glyph glyph-name="75" unicode="&#xe075;"
d="M0 700h300v-100h-50c-28 0 -50 -22 -50 -50v-150h300v150c0 28 -22 50 -50 50h-50v100h300v-100h-50c-28 0 -50 -22 -50 -50v-400c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50v150h-300v-150c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50
v400c0 28 -22 50 -50 50h-50v100z" />
<glyph glyph-name="76" unicode="&#xe076;"
d="M400 700c165 0 300 -135 300 -300v-100h50c28 0 50 -22 50 -50v-200c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v350c0 111 -89 200 -200 200s-200 -89 -200 -200v-350c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v200c0 28 22 50 50 50h50v100
c0 165 135 300 300 300z" />
<glyph glyph-name="77" unicode="&#xe077;"
d="M0 500c0 109 91 200 200 200s200 -91 200 -200c0 109 91 200 200 200s200 -91 200 -200c0 -55 -23 -105 -59 -141l-341 -340l-341 340c-36 36 -59 86 -59 141z" />
<glyph glyph-name="78" unicode="&#xe078;"
d="M400 700l400 -300l-100 3v-403h-200v200h-200v-200h-200v400h-100z" />
<glyph glyph-name="79" unicode="&#xe079;"
d="M0 800h800v-800h-800v800zM100 700v-300l100 100l400 -400h100v100l-200 200l100 100l100 -100v300h-600z" />
<glyph glyph-name="7a" unicode="&#xe07a;"
d="M19 800h762c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-762c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 600v-300h100l100 -100h200l100 100h100v300h-600z" />
<glyph glyph-name="7b" unicode="&#xe07b;"
d="M200 600c80 0 142 -56 200 -122c58 66 119 122 200 122c131 0 200 -101 200 -200s-69 -200 -200 -200c-81 0 -142 56 -200 122c-58 -66 -121 -122 -200 -122c-131 0 -200 101 -200 200s69 200 200 200zM200 500c-74 0 -100 -54 -100 -100s26 -100 100 -100
c42 0 88 47 134 100c-46 53 -92 100 -134 100zM600 500c-43 0 -88 -47 -134 -100c46 -53 91 -100 134 -100c74 0 100 54 100 100s-26 100 -100 100z" />
<glyph glyph-name="7c" unicode="&#xe07c;" horiz-adv-x="400"
d="M300 800c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100zM150 550c83 0 150 -69 150 -150c0 -66 -100 -214 -100 -250c0 -28 22 -50 50 -50s50 22 50 50h100c0 -83 -67 -150 -150 -150s-150 64 -150 150s100 222 100 250s-22 50 -50 50
s-50 -22 -50 -50h-100c0 83 67 150 150 150z" />
<glyph glyph-name="7d" unicode="&#xe07d;"
d="M200 800h500v-100h-122c-77 -197 -156 -392 -234 -588l-6 -12h162v-100h-500v100h122c77 197 156 392 234 588l7 12h-163v100z" />
<glyph glyph-name="7e" unicode="&#xe07e;"
d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" />
<glyph glyph-name="7f" unicode="&#xe07f;"
d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" />
<glyph glyph-name="80" unicode="&#xe080;"
d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" />
<glyph glyph-name="81" unicode="&#xe081;"
d="M550 800c138 0 250 -112 250 -250s-112 -250 -250 -250c-16 0 -32 0 -47 3l-3 -3v-100h-200v-200h-300v200l303 303c-3 15 -3 31 -3 47c0 138 112 250 250 250zM600 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" />
<glyph glyph-name="82" unicode="&#xe082;"
d="M134 600h3h4h4h5h500c28 0 50 -22 50 -50v-350h100v-150c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v150h100v350v2c0 20 15 42 34 48zM200 500v-300h100v-100h200v100h100v300h-400z" />
<glyph glyph-name="83" unicode="&#xe083;"
d="M0 800h400v-400h-400v400zM500 600h100v-400h-400v100h300v300zM700 400h100v-400h-400v100h300v300z" />
<glyph glyph-name="84" unicode="&#xe084;" horiz-adv-x="600"
d="M337 694c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-300 -150c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49zM437 544c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-400 -200c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50
c0 21 16 44 37 49zM437 344c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-106 -56c24 -4 43 -26 43 -50c0 -28 -23 -51 -51 -51c-2 0 -6 1 -8 1h-200c-26 1 -48 24 -48 50c0 16 12 36 26 44zM151 -50c0 23 20 50 46 50h3h4h5h100c28 0 50 -22 50 -50
s-22 -50 -50 -50h-100c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" />
<glyph glyph-name="85" unicode="&#xe085;"
d="M199 800h100v-200h-200v100h100v100zM586 797h1c18 1 38 1 56 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0l-44 -44
c-8 -13 -27 -24 -42 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l43 44c32 33 72 53 128 56zM208 490c4 5 14 16 22 16h3c2 0 6 1 8 1c28 0 50 -22 50 -50c0 -11 -6 -27 -14 -35l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0l44 44c8 13 27 24 42 24
c28 0 50 -22 50 -50c0 -15 -11 -35 -24 -43l-43 -44c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281zM499 200h200v-100h-100v-100h-100v200z" />
<glyph glyph-name="86" unicode="&#xe086;"
d="M586 797c18 1 39 1 57 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-62 -62 -132 -81 -182 -78s-69 17 -84 25s-26 27 -26 44c0 28 22 51 50 51c8 0 19 -3 26 -7c0 0 15 -11 41 -13s62 3 106 47l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0
c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43c32 33 72 53 128 56zM386 566c50 -2 64 -17 85 -22s37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11c0 0 -19 9 -47 10s-63 -4 -103 -44l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0
c8 13 27 24 42 24c28 0 50 -22 50 -50c0 -15 -10 -35 -23 -43c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281l150 150c60 60 128 78 178 76z" />
<glyph glyph-name="87" unicode="&#xe087;"
d="M0 700h300v-300h-300v300zM400 700h400v-100h-400v100zM400 500h300v-100h-300v100zM0 300h300v-300h-300v300zM400 300h400v-100h-400v100zM400 100h300v-100h-300v100z" />
<glyph glyph-name="88" unicode="&#xe088;"
d="M50 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 700h600v-100h-600v100zM50 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 500h600v-100h-600v100zM50 300c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50
s22 50 50 50zM200 300h600v-100h-600v100zM50 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 100h600v-100h-600v100z" />
<glyph glyph-name="89" unicode="&#xe089;"
d="M800 800l-400 -800l-100 300l-300 100z" />
<glyph glyph-name="8a" unicode="&#xe08a;" horiz-adv-x="600"
d="M300 700c110 0 200 -90 200 -200v-100h100v-400h-600v400h100v100c0 110 90 200 200 200zM300 600c-56 0 -100 -44 -100 -100v-100h200v100c0 56 -44 100 -100 100z" />
<glyph glyph-name="8b" unicode="&#xe08b;" horiz-adv-x="600"
d="M300 800c110 0 200 -90 200 -200v-200h100v-400h-600v400h400v200c0 56 -44 100 -100 100s-100 -44 -100 -100h-100c0 110 90 200 200 200z" />
<glyph glyph-name="8c" unicode="&#xe08c;"
d="M400 700v-100c-111 0 -200 -89 -200 -200h100l-150 -200l-150 200h100c0 165 135 300 300 300zM650 600l150 -200h-100c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-100z" />
<glyph glyph-name="8d" unicode="&#xe08d;"
d="M100 800h600v-300h100l-150 -250l-150 250h100v200h-400v-100h-100v200zM150 550l150 -250h-100v-200h400v100h100v-200h-600v300h-100z" />
<glyph glyph-name="8e" unicode="&#xe08e;"
d="M600 700l200 -150l-200 -150v100h-500v-100h-100v100c0 55 45 100 100 100h500v100zM200 300v-100h500v100h100v-100c0 -55 -45 -100 -100 -100h-500v-100l-200 150z" />
<glyph glyph-name="8f" unicode="&#xe08f;" horiz-adv-x="900"
d="M350 800c193 0 350 -157 350 -350c0 -60 -17 -117 -44 -166c5 -3 12 -8 16 -12l100 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 100c-4 3 -9 9 -12 13c-49 -26 -107 -41 -166 -41c-193 0 -350 157 -350 350s157 350 350 350zM350 200
c142 0 250 108 250 250c0 139 -111 250 -250 250s-250 -111 -250 -250s111 -250 250 -250z" />
<glyph glyph-name="90" unicode="&#xe090;" horiz-adv-x="600"
d="M300 800c166 0 300 -134 300 -300c0 -200 -300 -500 -300 -500s-300 300 -300 500c0 166 134 300 300 300zM300 700c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200z" />
<glyph glyph-name="91" unicode="&#xe091;" horiz-adv-x="900"
d="M0 800h800v-541c1 -3 1 -8 1 -11s0 -7 -1 -10v-238h-800v800zM495 250c0 26 22 50 50 50h5h150v400h-600v-600h600v100h-150h-5c-28 0 -50 22 -50 50zM350 600c83 0 150 -67 150 -150c0 -100 -150 -250 -150 -250s-150 150 -150 250c0 83 67 150 150 150zM350 500
c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
<glyph glyph-name="92" unicode="&#xe092;" horiz-adv-x="600"
d="M0 700h200v-600h-200v600zM400 700h200v-600h-200v600z" />
<glyph glyph-name="93" unicode="&#xe093;" horiz-adv-x="600"
d="M0 700l600 -300l-600 -300v600z" />
<glyph glyph-name="94" unicode="&#xe094;" horiz-adv-x="600"
d="M300 700c166 0 300 -134 300 -300s-134 -300 -300 -300s-300 134 -300 300s134 300 300 300z" />
<glyph glyph-name="95" unicode="&#xe095;"
d="M400 700v-600l-400 300zM400 400l400 300v-600z" />
<glyph glyph-name="96" unicode="&#xe096;"
d="M0 700l400 -300l-400 -300v600zM400 100v600l400 -300z" />
<glyph glyph-name="97" unicode="&#xe097;"
d="M0 700h200v-600h-200v600zM200 400l500 300v-600z" />
<glyph glyph-name="98" unicode="&#xe098;"
d="M0 700l500 -300l-500 -300v600zM500 100v600h200v-600h-200z" />
<glyph glyph-name="99" unicode="&#xe099;" horiz-adv-x="600"
d="M0 700h600v-600h-600v600z" />
<glyph glyph-name="9a" unicode="&#xe09a;"
d="M200 800h400v-200h200v-400h-200v-200h-400v200h-200v400h200v200z" />
<glyph glyph-name="9b" unicode="&#xe09b;"
d="M0 700h800v-100h-800v100zM0 403h800v-100h-800v100zM0 103h800v-100h-800v100z" />
<glyph glyph-name="9c" unicode="&#xe09c;" horiz-adv-x="600"
d="M278 700c7 2 13 4 22 4c55 0 100 -45 100 -100v-4v-200c0 -55 -45 -100 -100 -100s-100 45 -100 100v200v2c0 44 35 88 78 98zM34 500h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-50c0 -111 89 -200 200 -200s200 89 200 200v50c0 28 22 50 50 50s50 -22 50 -50v-50
c0 -148 -109 -270 -250 -294v-106h50c55 0 100 -45 100 -100h-400c0 55 45 100 100 100h50v106c-141 24 -250 146 -250 294v50v2c0 20 15 42 34 48z" />
<glyph glyph-name="9d" unicode="&#xe09d;"
d="M0 500h800v-200h-800v200z" />
<glyph glyph-name="9e" unicode="&#xe09e;"
d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-500c0 -28 -22 -50 -50 -50h-250v-100h100c55 0 100 -45 100 -100h-600c0 55 45 100 100 100h100v100h-250c-28 0 -50 22 -50 50v500v2c0 20 15 42 34 48zM100 600v-400h600v400h-600z" />
<glyph glyph-name="9f" unicode="&#xe09f;"
d="M272 700c-14 -40 -22 -83 -22 -128c0 -221 179 -400 400 -400c45 0 88 8 128 22c-53 -158 -202 -272 -378 -272c-221 0 -400 179 -400 400c0 176 114 325 272 378z" />
<glyph glyph-name="a0" unicode="&#xe0a0;"
d="M350 700l150 -150h-100v-150h150v100l150 -150l-150 -150v100h-150v-150h100l-150 -150l-150 150h100v150h-150v-100l-150 150l150 150v-100h150v150h-100z" />
<glyph glyph-name="a1" unicode="&#xe0a1;"
d="M800 800v-550c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v206c-201 -6 -327 -27 -400 -50v-397c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v409s100 100 600 100z" />
<glyph glyph-name="a2" unicode="&#xe0a2;" horiz-adv-x="700"
d="M499 700c51 0 102 -20 141 -59c78 -78 78 -203 0 -281l-250 -244c-48 -48 -127 -48 -175 0s-48 127 0 175l96 97l69 -69l-90 -94l-7 -3c-10 -10 -10 -28 0 -38s28 -10 38 0l250 247c37 40 39 102 0 141s-104 40 -144 0l-278 -275c-66 -69 -68 -179 0 -247
c69 -69 181 -69 250 0l9 12l116 113l69 -69l-125 -125c-107 -107 -281 -107 -388 0s-107 281 0 388l278 272c39 39 90 59 141 59z" />
<glyph glyph-name="a3" unicode="&#xe0a3;"
d="M600 800l200 -200l-100 -100l-200 200zM400 600l200 -200l-400 -400h-200v200z" />
<glyph glyph-name="a4" unicode="&#xe0a4;"
d="M550 800c83 0 150 -90 150 -200s-67 -200 -150 -200c-22 0 -40 8 -59 19c6 26 9 52 9 81c0 84 -27 158 -72 212c27 52 71 88 122 88zM250 700c83 0 150 -90 150 -200s-67 -200 -150 -200s-150 90 -150 200s67 200 150 200zM725 384c44 -22 75 -66 75 -118v-166h-200v66
c0 50 -17 96 -44 134c66 2 126 33 169 84zM75 284c45 -53 106 -84 175 -84s130 31 175 84c44 -22 75 -66 75 -118v-166h-500v166c0 52 31 96 75 118z" />
<glyph glyph-name="a5" unicode="&#xe0a5;"
d="M400 800c110 0 200 -112 200 -250s-90 -250 -200 -250s-200 112 -200 250s90 250 200 250zM191 300c54 -61 128 -100 209 -100s155 39 209 100c106 -5 191 -92 191 -200v-100h-800v100c0 108 85 195 191 200z" />
<glyph glyph-name="a6" unicode="&#xe0a6;" horiz-adv-x="600"
d="M19 800h462c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-462c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 700v-500h300v500h-300zM250 150c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
<glyph glyph-name="a7" unicode="&#xe0a7;"
d="M350 800c17 0 34 -1 50 -3v-397l-297 297c63 64 150 103 247 103zM500 694c169 -25 300 -168 300 -344c0 -193 -157 -350 -350 -350c-85 0 -161 31 -222 81l272 272v341zM91 562l237 -234l-212 -212c-70 55 -116 138 -116 234c0 84 35 158 91 212z" />
<glyph glyph-name="a8" unicode="&#xe0a8;"
d="M92 650c0 23 20 50 46 50h3h4h5h400c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-200h100c55 0 100 -45 100 -100h-300v-300l-56 -100l-44 100v300h-300c0 55 45 100 100 100h100v200h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" />
<glyph glyph-name="a9" unicode="&#xe0a9;"
d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 600v-400l300 200z" />
<glyph glyph-name="aa" unicode="&#xe0aa;"
d="M300 800h200v-300h300v-200h-300v-300h-200v300h-300v200h300v300z" />
<glyph glyph-name="ab" unicode="&#xe0ab;"
d="M300 800h100v-400h-100v400zM172 656l62 -78l-40 -31c-58 -46 -94 -117 -94 -197c0 -139 111 -250 250 -250s250 111 250 250c0 80 -39 151 -97 197l-37 31l62 78l38 -31c82 -64 134 -164 134 -275c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 111 53 211 134 275z
" />
<glyph glyph-name="ac" unicode="&#xe0ac;"
d="M200 800h400v-200h-400v200zM9 500h782c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-91v200h-600v-200h-91c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM200 300h400v-300h-400v300z" />
<glyph glyph-name="ad" unicode="&#xe0ad;"
d="M0 700h100v-700h-100v700zM700 700h100v-700h-100v700zM200 600h200v-100h-200v100zM300 400h200v-100h-200v100zM400 200h200v-100h-200v100z" />
<glyph glyph-name="ae" unicode="&#xe0ae;"
d="M325 700c42 -141 87 -280 131 -419c29 74 59 148 88 222c30 -57 58 -114 87 -172h169v-100h-231l-13 28c-37 -92 -74 -184 -112 -275c-38 129 -79 257 -119 385c-42 -133 -83 -267 -125 -400c-28 88 -56 175 -84 262h-116v100h188l9 -34l3 -6c42 137 83 273 125 409z" />
<glyph glyph-name="af" unicode="&#xe0af;"
d="M200 600c0 57 43 100 100 100s100 -43 100 -100c0 -28 -18 -48 -28 -72c-3 -6 -3 -16 -3 -28h231v-231c12 0 22 0 28 3c24 10 44 28 72 28c57 0 100 -43 100 -100s-43 -100 -100 -100c-28 0 -48 18 -72 28c-6 3 -16 3 -28 3v-231h-231c0 12 0 22 3 28c10 24 28 44 28 72
c0 57 -43 100 -100 100s-100 -43 -100 -100c0 -28 18 -48 28 -72c3 -6 3 -16 3 -28h-231v600h231c0 12 0 22 -3 28c-10 24 -28 44 -28 72z" />
<glyph glyph-name="b0" unicode="&#xe0b0;" horiz-adv-x="500"
d="M247 700c84 0 148 -20 191 -59s59 -93 59 -141c0 -117 -69 -181 -119 -225s-81 -67 -81 -150v-25h-100v25c0 117 65 181 115 225s85 67 85 150c0 25 -8 48 -28 66s-56 34 -122 34s-97 -18 -116 -37s-27 -43 -31 -69l-100 12c5 38 19 88 59 128s103 66 188 66zM197 0h100
v-100h-100v100z" />
<glyph glyph-name="b1" unicode="&#xe0b1;"
d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -69 -48 -127 -112 -144c-22 55 -75 94 -138 94c-20 0 -39 -5 -56 -12c-17 64 -75 112 -144 112s-127 -48 -144 -112c-17 7 -36 12 -56 12c-37 0 -71 -12 -97 -34c-33 36 -53 82 -53 134
c0 110 90 200 200 200c23 114 129 200 250 200zM334 300h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-200c0 -28 -22 -50 -50 -50s-50 22 -50 50v200v2c0 20 15 42 34 48zM134 200h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2
c0 20 15 42 34 48zM534 200h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2c0 20 15 42 34 48z" />
<glyph glyph-name="b2" unicode="&#xe0b2;"
d="M600 800l200 -150l-200 -150v100h-50l-153 -191l175 -206l6 -3h22v100l200 -150l-200 -150v100h-25c-35 0 -56 12 -78 38l-166 190l-153 -190c-22 -27 -43 -38 -78 -38h-100v100h100l166 206l-163 191l-3 3h-100v100h100c34 0 56 -12 78 -38l153 -178l141 178
c22 27 43 38 78 38h50v100z" />
<glyph glyph-name="b3" unicode="&#xe0b3;"
d="M400 800c110 0 209 -47 281 -119l119 119v-300h-300l109 109c-54 55 -126 91 -209 91c-166 0 -300 -134 -300 -300s134 -300 300 -300c83 0 158 34 212 88l72 -72c-72 -72 -174 -116 -284 -116c-220 0 -400 180 -400 400s180 400 400 400z" />
<glyph glyph-name="b4" unicode="&#xe0b4;"
d="M400 800h400v-400l-166 166l-400 -400l166 -166h-400v400l166 -166l400 400z" />
<glyph glyph-name="b5" unicode="&#xe0b5;" horiz-adv-x="600"
d="M250 800l250 -300h-200v-200h200l-250 -300l-250 300h200v200h-200z" />
<glyph glyph-name="b6" unicode="&#xe0b6;"
d="M300 600v-200h200v200l300 -250l-300 -250v200h-200v-200l-300 250z" />
<glyph glyph-name="b7" unicode="&#xe0b7;"
d="M0 800c441 0 800 -359 800 -800h-200c0 333 -267 600 -600 600v200zM0 500c275 0 500 -225 500 -500h-200c0 167 -133 300 -300 300v200zM0 200c110 0 200 -90 200 -200h-200v200z" />
<glyph glyph-name="b8" unicode="&#xe0b8;"
d="M100 800c386 0 700 -314 700 -700h-100c0 332 -268 600 -600 600v100zM100 600c276 0 500 -224 500 -500h-100c0 222 -178 400 -400 400v100zM100 400c165 0 300 -135 300 -300h-100c0 111 -89 200 -200 200v100zM100 200c55 0 100 -45 100 -100s-45 -100 -100 -100
s-100 45 -100 100s45 100 100 100z" />
<glyph glyph-name="b9" unicode="&#xe0b9;"
d="M300 800h400c55 0 100 -45 100 -100v-200h-400v150c0 28 -22 50 -50 50s-50 -22 -50 -50v-250h400v-300c0 -55 -45 -100 -100 -100h-500c-55 0 -100 45 -100 100v200h100v-150c0 -28 22 -50 50 -50s50 22 50 50v550c0 55 45 100 100 100z" />
<glyph glyph-name="ba" unicode="&#xe0ba;"
d="M75 700h225v-100h-200v-500h400v100h100v-125c0 -41 -34 -75 -75 -75h-450c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM600 700l200 -200l-200 -200v100h-200c-94 0 -173 -65 -194 -153c23 199 189 353 394 353v100z" />
<glyph glyph-name="bb" unicode="&#xe0bb;"
d="M500 700l300 -284l-300 -316v200h-100c-200 0 -348 -102 -400 -300c0 295 100 500 500 500v200z" />
<glyph glyph-name="bc" unicode="&#xe0bc;"
d="M381 791l19 9l19 -9c127 -53 253 -108 381 -160v-31c0 -166 -67 -313 -147 -419c-40 -53 -83 -97 -125 -128s-82 -53 -128 -53s-86 22 -128 53s-85 75 -125 128c-80 107 -147 253 -147 419v31c128 52 254 107 381 160zM400 100v591l-294 -122c8 -126 58 -243 122 -328
c35 -46 73 -86 106 -110s62 -31 66 -31z" />
<glyph glyph-name="bd" unicode="&#xe0bd;"
d="M600 800h100v-800h-100v800zM400 700h100v-700h-100v700zM200 500h100v-500h-100v500zM0 300h100v-300h-100v300z" />
<glyph glyph-name="be" unicode="&#xe0be;"
d="M300 800h100v-200h200l100 -100l-100 -100h-200v-400h-100v500h-200l-100 100l100 100h200v100z" />
<glyph glyph-name="bf" unicode="&#xe0bf;"
d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h200v-100h-200v100zM400 600h300v-100h-300v100zM400 400h400v-100h-400v100z" />
<glyph glyph-name="c0" unicode="&#xe0c0;"
d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h400v-100h-400v100zM400 600h300v-100h-300v100zM400 400h200v-100h-200v100z" />
<glyph glyph-name="c1" unicode="&#xe0c1;"
d="M75 700h650c41 0 75 -34 75 -75v-550c0 -41 -34 -75 -75 -75h-650c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM100 600v-100h100v100h-100zM300 600v-100h400v100h-400zM100 400v-100h100v100h-100zM300 400v-100h400v100h-400zM100 200v-100h100v100h-100zM300 200
v-100h400v100h-400z" />
<glyph glyph-name="c2" unicode="&#xe0c2;"
d="M400 800l100 -300h300l-250 -200l100 -300l-250 200l-250 -200l100 300l-250 200h300z" />
<glyph glyph-name="c3" unicode="&#xe0c3;"
d="M400 800c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM650 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 600c110 0 200 -90 200 -200
s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM50 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM750 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50
s22 50 50 50zM650 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" />
<glyph glyph-name="c4" unicode="&#xe0c4;"
d="M34 800h632c18 0 34 -16 34 -34v-732c0 -18 -16 -34 -34 -34h-632c-18 0 -34 16 -34 34v732c0 18 16 34 34 34zM100 700v-500h500v500h-500zM350 150c-38 0 -63 -42 -44 -75s69 -33 88 0s-6 75 -44 75z" />
<glyph glyph-name="c5" unicode="&#xe0c5;"
d="M0 800h300l500 -500l-300 -300l-500 500v300zM200 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" />
<glyph glyph-name="c6" unicode="&#xe0c6;"
d="M0 600h200l300 -300l-200 -200l-300 300v200zM340 600h160l300 -300l-200 -200l-78 78l119 122zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
<glyph glyph-name="c7" unicode="&#xe0c7;"
d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200
s90 200 200 200zM400 500c-56 0 -100 -44 -100 -100s44 -100 100 -100s100 44 100 100s-44 100 -100 100z" />
<glyph glyph-name="c8" unicode="&#xe0c8;"
d="M0 700h559l-100 -100h-359v-500h500v159l100 100v-359h-700v700zM700 700l100 -100l-400 -400l-200 200l100 100l100 -100z" />
<glyph glyph-name="c9" unicode="&#xe0c9;"
d="M9 800h782c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM150 722l-72 -72l100 -100l-100 -100l72 -72l172 172zM400 500v-100h300v100h-300z" />
<glyph glyph-name="ca" unicode="&#xe0ca;"
d="M0 800h800v-200h-50c0 55 -45 100 -100 100h-150v-550c0 -28 22 -50 50 -50h50v-100h-400v100h50c28 0 50 22 50 50v550h-150c-55 0 -100 -45 -100 -100h-50v200z" />
<glyph glyph-name="cb" unicode="&#xe0cb;"
d="M0 700h100v-400h-100v400zM200 700h350c21 0 39 -13 47 -31c0 0 103 -291 103 -319s-22 -50 -50 -50h-150c-28 0 -50 -25 -50 -50s39 -158 47 -184s-5 -55 -31 -63s-52 5 -66 31s-109 219 -128 238s-44 28 -72 28v400z" />
<glyph glyph-name="cc" unicode="&#xe0cc;"
d="M400 666c10 19 28 32 47 34l19 -3c26 -8 39 -37 31 -63s-47 -159 -47 -184s22 -50 50 -50h150c28 0 50 -22 50 -50s-103 -319 -103 -319c-8 -18 -26 -31 -47 -31h-350v400c28 0 53 9 72 28s114 212 128 238zM0 400h100v-400h-100v400z" />
<glyph glyph-name="cd" unicode="&#xe0cd;"
d="M200 700h300v-100h-100v-6c25 -4 50 -8 72 -16l-34 -94c-28 11 -58 16 -88 16c-139 0 -250 -111 -250 -250s111 -250 250 -250s250 111 250 250c0 31 -5 60 -16 88l91 37c14 -38 25 -81 25 -125c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 176 130 323 300 347v3
h-100v100zM700 584c0 0 -296 -348 -316 -368s-48 -20 -68 0s-20 48 0 68s384 300 384 300z" />
<glyph glyph-name="ce" unicode="&#xe0ce;"
d="M600 700l200 -150l-200 -150v100h-600v100h600v100zM200 300v-100h600v-100h-600v-100l-200 150z" />
<glyph glyph-name="cf" unicode="&#xe0cf;"
d="M300 800h100c55 0 100 -45 100 -100h100c55 0 100 -45 100 -100h-700c0 55 45 100 100 100h100c0 55 45 100 100 100zM100 500h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-481c0 -11 -8 -19 -19 -19h-462
c-11 0 -19 8 -19 19v481z" />
<glyph glyph-name="d0" unicode="&#xe0d0;"
d="M100 800h200v-400c0 -55 45 -100 100 -100s100 45 100 100v400h100v-400c0 -110 -90 -200 -200 -200h-50c-138 0 -250 90 -250 200v400zM0 100h700v-100h-700v100z" />
<glyph glyph-name="d1" unicode="&#xe0d1;"
d="M9 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM609 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282
c0 6 3 9 9 9zM0 100h800v-100h-800v100z" />
<glyph glyph-name="d2" unicode="&#xe0d2;"
d="M10 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 4 9 10 9zM610 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 5 9 10 9zM310 600h181c6 0 9 -3 9 -9v-91h-200v91c0 6 4 9 10 9zM0 400h800v-100h-800v100zM0 200h200v-191c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v191zM300 200
h200v-91c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v91zM600 200h200v-191c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v191z" />
<glyph glyph-name="d3" unicode="&#xe0d3;"
d="M0 700h800v-100h-800v100zM9 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM609 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182
c-6 0 -9 3 -9 9v482c0 6 3 9 9 9z" />
<glyph glyph-name="d4" unicode="&#xe0d4;"
d="M50 600h500c28 0 50 -22 50 -50v-150l100 100h100v-300h-100l-100 100v-150c0 -28 -22 -50 -50 -50h-500c-28 0 -50 22 -50 50v400c0 28 22 50 50 50z" />
<glyph glyph-name="d5" unicode="&#xe0d5;"
d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 600v100c26 0 52 -4 75 -10c130 -33 225 -150 225 -290s-95 -258 -225 -291h-3c-23 -6 -47 -9 -72 -9v100c17 0 34 2 50 6c86 22 150 100 150 194s-64 172 -150 194c-16 4 -33 6 -50 6zM500 500l25 -3
c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" />
<glyph glyph-name="d6" unicode="&#xe0d6;" horiz-adv-x="600"
d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 500l25 -3c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" />
<glyph glyph-name="d7" unicode="&#xe0d7;" horiz-adv-x="400"
d="M334 800h66v-800h-66l-134 200h-200v400h200z" />
<glyph glyph-name="d8" unicode="&#xe0d8;"
d="M309 800h82c6 0 10 -4 12 -9l294 -682l3 -19v-81c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v81l3 19l294 682c2 5 6 9 12 9zM300 500v-200h100v200h-100zM300 200v-100h100v100h-100z" />
<glyph glyph-name="d9" unicode="&#xe0d9;"
d="M375 800c138 0 269 -39 378 -109l-53 -82c-93 60 -205 91 -325 91c-119 0 -229 -32 -322 -91l-53 82c109 70 237 109 375 109zM375 500c78 0 154 -23 216 -62l-53 -85c-46 30 -104 47 -163 47c-60 0 -112 -17 -159 -47l-54 85c62 40 134 62 213 62zM375 200
c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" />
<glyph glyph-name="da" unicode="&#xe0da;" horiz-adv-x="900"
d="M551 800c16 0 32 0 47 -3l-97 -97v-200h200l97 97c3 -15 3 -31 3 -47c0 -138 -112 -250 -250 -250c-32 0 -62 8 -90 19l-288 -291c-20 -20 -46 -28 -72 -28s-52 8 -72 28c-39 39 -39 105 0 144l291 287c-11 28 -19 59 -19 91c0 138 112 250 250 250zM101 150
c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" />
<glyph glyph-name="db" unicode="&#xe0db;"
d="M141 700c84 -84 169 -167 253 -250c82 83 167 165 247 250l143 -141l-253 -253c84 -82 167 -166 253 -247l-143 -143c-81 86 -165 169 -247 253l-253 -253l-141 143c85 80 167 164 250 247c-83 84 -166 169 -250 253z" />
<glyph glyph-name="dc" unicode="&#xe0dc;"
d="M0 800h100l231 -300h38l231 300h100l-225 -300h225v-100h-300v-100h300v-100h-300v-200h-100v200h-300v100h300v100h-300v100h225z" />
<glyph glyph-name="dd" unicode="&#xe0dd;" horiz-adv-x="900"
d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700
c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM300 600h100v-100h100v-100h-100v-100h-100v100h-100v100h100v100z" />
<glyph glyph-name="de" unicode="&#xe0de;" horiz-adv-x="900"
d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700
c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM200 500h300v-100h-300v100z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,141 @@
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html, body {
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
}
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
.invalid {
outline: 1px solid red;
}
.validation-message {
color: red;
}
.button-link {
text-decoration: unset;
}
#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;
}
.title {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding-bottom: 0.625rem;
}
.title.title-secondary {
padding-top: 0.313rem;
padding-bottom: 0;
color: var(--bs-secondary-color, var(--DS-color-content-neutral-default-rest));
}
.title-header-text {
font-size: 2.5rem;
line-height: 3rem;
font-weight: 600;
letter-spacing: 0rem;
padding: 0.3125rem 0;
}
.title-content-text {
font-size: 1.75rem;
font-weight: 400;
line-height: 2.5rem;
letter-spacing: 0rem;
}
.main-content {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.block-content {
width: 31.25rem;
height: auto;
display: flex;
flex-direction: column;
gap: 0.625rem;
max-width: 100%;
}
.icon {
width: var(--icon-width);
height: var(--icon-height);
background-color: currentcolor;
mask-position: center center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-image: var(--icon-mask-image);
mask-image: var(--icon-mask-image);
}
.rb-icon {
width: 1.25rem;
height: 1.25rem;
background-size: contain;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
background-position: center center;
background-color: currentColor;
}
.rb-icon-document-blank {
-webkit-mask-image: url("../images/icons/ribbon/berry/document-blank.svg");
mask-image: url("../images/icons/ribbon/berry/document-blank.svg");
}
.rb-icon-folder-open {
-webkit-mask-image: url("../images/icons/ribbon/berry/folder-open.svg");
mask-image: url("../images/icons/ribbon/berry/folder-open.svg");
}
.rb-icon-save {
-webkit-mask-image: url("../images/icons/ribbon/berry/save.svg");
mask-image: url("../images/icons/ribbon/berry/save.svg");
}
.rb-icon-print {
-webkit-mask-image: url("../images/icons/ribbon/berry/print.svg");
mask-image: url("../images/icons/ribbon/berry/print.svg");
}
.rb-icon-share {
-webkit-mask-image: url("../images/icons/ribbon/berry/share.svg");
mask-image: url("../images/icons/ribbon/berry/share.svg");
}

View File

@ -0,0 +1,17 @@
.nav-buttons-container .dxbl-btn.dxbl-btn-icon-only {
--dxbl-btn-padding-x: 0.75rem;
--dxbl-btn-padding-y: 0.25rem;
}
.icon {
--icon-width: 1rem;
--icon-height: 1rem;
--icon-back-mask-image: url("/images/back.svg");
--icon-close-mask-image: url("/images/close.svg");
--icon-menu-mask-image: url("/images/menu.svg");
--icon-docs-mask-image: url("/images/doc.svg");
--icon-demos-mask-image: url("/images/demos.svg");
--icon-home-mask-image: url("/images/home.svg");
--icon-weather-mask-image: url("/images/weather.svg");
--icon-counter-mask-image: url("/images/counter.svg");
}

View File

@ -0,0 +1,42 @@
body {
margin: 0;
}
.w-100 {
width: 100%;
}
.text-danger {
color: var(--DS-color-surface-danger-default-rest);
}
.p-4 {
padding: 1.5rem;
}
.navigation-drawer {
--dxbl-drawer-separator-border-width: 0;
}
.menu-item {
--dxbl-menu-item-color: #fff;
--dxbl-menu-item-image-color: #fff;
}
[data-fluent-darkmode] .dxbl-theme-fluent .welcome-card {
color: var(--DS-primary-70);
}
.icon {
--icon-width: 1.25rem;
--icon-height: 1.25rem;
--icon-back-mask-image: url("/images/back-fluent.svg");
--icon-close-mask-image: url("/images/close-fluent.svg");
--icon-menu-mask-image: url("/images/menu-fluent.svg");
--icon-docs-mask-image: url("/images/doc-fluent.svg");
--icon-demos-mask-image: url("/images/demos-fluent.svg");
--icon-home-mask-image: url("/images/home-fluent.svg");
--icon-weather-mask-image: url("/images/weather-fluent.svg");
--icon-counter-mask-image: url("/images/counter-fluent.svg");
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 17C7.22386 17 7 16.7761 7 16.5C7 16.2239 7.22386 16 7.5 16H14C15.1046 16 16 15.1046 16 14V6C16 4.89543 15.1046 4 14 4H7.5C7.22386 4 7 3.77614 7 3.5C7 3.22386 7.22386 3 7.5 3H14C15.6569 3 17 4.34315 17 6V14C17 15.6569 15.6569 17 14 17H7.5ZM7.64645 6.14645C7.84171 5.95118 8.15829 5.95118 8.35355 6.14645L11.8536 9.64645C12.0488 9.84171 12.0488 10.1583 11.8536 10.3536L8.35355 13.8536C8.15829 14.0488 7.84171 14.0488 7.64645 13.8536C7.45118 13.6583 7.45118 13.3417 7.64645 13.1464L10.2929 10.5H1.5C1.22386 10.5 1 10.2761 1 10C1 9.72386 1.22386 9.5 1.5 9.5H10.2929L7.64645 6.85355C7.45118 6.65829 7.45118 6.34171 7.64645 6.14645Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 760 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 3H13C13.5531 3 14 3.44688 14 4V12C14 12.5531 13.5531 13 13 13H11C10.4469 13 10 13.4469 10 14C10 14.5531 10.4469 15 11 15H13C14.6562 15 16 13.6562 16 12V4C16 2.34375 14.6562 1 13 1H11C10.4469 1 10 1.44687 10 2C10 2.55313 10.4469 3 11 3ZM10.7063 8.70625C11.0969 8.31563 11.0969 7.68125 10.7063 7.29063L6.70625 3.29063C6.31563 2.9 5.68125 2.9 5.29063 3.29063C4.9 3.68125 4.9 4.31563 5.29063 4.70625L7.58437 7H1C0.446875 7 0 7.44688 0 8C0 8.55312 0.446875 9 1 9H7.58437L5.29063 11.2937C4.9 11.6844 4.9 12.3188 5.29063 12.7094C5.68125 13.1 6.31563 13.1 6.70625 12.7094L10.7063 8.70938V8.70625Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 721 B

View File

@ -0,0 +1,4 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 3C12.7761 3 13 3.22386 13 3.5C13 3.77614 12.7761 4 12.5 4H6C4.89543 4 4 4.89543 4 6V14C4 15.1046 4.89543 16 6 16H12.5C12.7761 16 13 16.2239 13 16.5C13 16.7761 12.7761 17 12.5 17H6C4.34315 17 3 15.6569 3 14V6C3 4.34315 4.34315 3 6 3H12.5Z" fill="black"/>
<path d="M13.6465 6.14648C13.8417 5.95122 14.1583 5.95122 14.3535 6.14648L17.8535 9.64648C18.0488 9.84175 18.0488 10.1583 17.8535 10.3535L14.3535 13.8535C14.1583 14.0488 13.8417 14.0488 13.6465 13.8535C13.4512 13.6583 13.4512 13.3417 13.6465 13.1465L16.293 10.5H7.5C7.22386 10.5 7 10.2761 7 10C7 9.72386 7.22386 9.5 7.5 9.5H16.293L13.6465 6.85352C13.4512 6.65825 13.4512 6.34175 13.6465 6.14648Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 784 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.7062 7.70625C16.0969 7.31563 16.0969 6.68125 15.7062 6.29063L11.7063 2.29063C11.3156 1.9 10.6812 1.9 10.2906 2.29063C9.9 2.68125 9.9 3.31563 10.2906 3.70625L12.5844 6H6C5.44688 6 5 6.44688 5 7C5 7.55312 5.44688 8 6 8H12.5844L10.2906 10.2937C9.9 10.6844 9.9 11.3188 10.2906 11.7094C10.6812 12.1 11.3156 12.1 11.7063 11.7094L15.7062 7.70938V7.70625ZM5 2C5.55312 2 6 1.55313 6 1C6 0.446875 5.55312 0 5 0H3C1.34375 0 0 1.34375 0 3V11C0 12.6562 1.34375 14 3 14H5C5.55312 14 6 13.5531 6 13C6 12.4469 5.55312 12 5 12H3C2.44688 12 2 11.5531 2 11V3C2 2.44688 2.44688 2 3 2H5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 699 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.5 4C16.8807 4 18 5.11929 18 6.5V14.5C18 15.8807 16.8807 17 15.5 17H4.5C3.11929 17 2 15.8807 2 14.5V6.5C2 5.11929 3.11929 4 4.5 4H15.5ZM17 7.961L10.2535 11.931C10.1231 12.0077 9.96661 12.0205 9.82751 11.9693L9.74649 11.931L3 7.963V14.5C3 15.3284 3.67157 16 4.5 16H15.5C16.3284 16 17 15.3284 17 14.5V7.961ZM15.5 5H4.5C3.67157 5 3 5.67157 3 6.5V6.802L10 10.9199L17 6.801V6.5C17 5.67157 16.3284 5 15.5 5Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 533 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 11.9999C0 13.0999 0.9 13.9999 2 13.9999H14C15.1 13.9999 16 13.0999 16 11.9999V1.99994C16 1 15 -6.10352e-05 14 0L2 -6.10352e-05C0.9 -6.10352e-05 0 0.899939 0 1.99994V11.9999ZM2 1.99994H14V3L8 5.91203L2 3V1.99994ZM2 5V11.9999H14V5L8 8.08797L2 5Z" fill="#6C757D"/>
</svg>

After

Width:  |  Height:  |  Size: 417 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 13C10.5523 13 11 12.5523 11 12C11 11.4477 10.5523 11 10 11C9.44771 11 9 11.4477 9 12C9 12.5523 9.44771 13 10 13ZM6 6H7V5C7 3.34315 8.34315 2 10 2C11.6569 2 13 3.34315 13 5V6H14C15.6569 6 17 7.34315 17 9V15C17 16.6569 15.6569 18 14 18H6C4.34315 18 3 16.6569 3 15V9C3 7.34315 4.34315 6 6 6ZM10 3C8.89543 3 8 3.89543 8 5V6H12V5C12 3.89543 11.1046 3 10 3ZM16 9C16 7.89543 15.1046 7 14 7H6C4.89543 7 4 7.89543 4 9V15C4 16.1046 4.89543 17 6 17H14C15.1046 17 16 16.1046 16 15V9Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 604 B

View File

@ -0,0 +1,3 @@
<svg width="12" height="14" viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 7.00007C12 4.66676 10 4.66676 10 4.66676C10 4.66676 10 0 6 0C2 0 2 4.66676 2 4.66676C2 4.66676 -8.59471e-05 4.66676 2.77007e-09 7.00007V11.6667C-4.30318e-05 14 2 13.9999 2 13.9999L10 14C10 14 12 14 12 11.6667V7.00007ZM5.99996 2.33345C7.99996 2.33345 8 4.66676 8 4.66676H4C4 4.66676 3.99996 2.33345 5.99996 2.33345Z" fill="#6C757D"/>
</svg>

After

Width:  |  Height:  |  Size: 489 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 5C8.89543 5 8 5.89543 8 7C8 8.10457 8.89543 9 10 9C11.1046 9 12 8.10457 12 7C12 5.89543 11.1046 5 10 5ZM12.5 10L7.49998 10C6.67156 10 6 10.6716 6 11.5C6 12.6161 6.45897 13.5103 7.21215 14.1148C7.95342 14.7098 8.94692 15 10 15C11.0531 15 12.0466 14.7098 12.7879 14.1148C13.541 13.5103 14 12.6161 14 11.5C14 10.6716 13.3284 10 12.5 10ZM6 3C4.34315 3 3 4.34315 3 6V14C3 15.6569 4.34315 17 6 17H14C15.6569 17 17 15.6569 17 14V6C17 4.34315 15.6569 3 14 3H6ZM4 6C4 4.89543 4.89543 4 6 4H14C15.1046 4 16 4.89543 16 6V14C16 15.1046 15.1046 16 14 16H6C4.89543 16 4 15.1046 4 14V6Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 704 B

View File

@ -0,0 +1,3 @@
<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C12 0.896875 11.1031 0 10 0H2C0.896875 0 0 0.896875 0 2V14C0 15.1031 0.896875 16 2 16H10C11.1031 16 12 15.1031 12 14V2ZM8 6C8 7.10313 7.10313 8 6 8C4.89687 8 4 7.10313 4 6C4 4.89687 4.89687 4 6 4C7.10313 4 8 4.89687 8 6ZM2.5 11.1438C2.5 9.95938 3.45938 9 4.64375 9H7.35938C8.54375 9 9.50313 9.95938 9.50313 11.1438C9.50313 11.6156 9.11875 12 8.64688 12H3.35625C2.88438 12 2.5 11.6156 2.5 11.1438Z" fill="#6C757D"/>
</svg>

After

Width:  |  Height:  |  Size: 532 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 2C7.79086 2 6 3.79086 6 6C6 8.20914 7.79086 10 10 10C12.2091 10 14 8.20914 14 6C14 3.79086 12.2091 2 10 2ZM7 6C7 4.34315 8.34315 3 10 3C11.6569 3 13 4.34315 13 6C13 7.65685 11.6569 9 10 9C8.34315 9 7 7.65685 7 6ZM5.00873 11C3.90315 11 3 11.8869 3 13C3 14.6912 3.83281 15.9663 5.13499 16.7966C6.41697 17.614 8.14526 18 10 18C11.8547 18 13.583 17.614 14.865 16.7966C16.1672 15.9663 17 14.6912 17 13C17 11.8956 16.1045 11 15 11L5.00873 11ZM4 13C4 12.4467 4.44786 12 5.00873 12L15 12C15.5522 12 16 12.4478 16 13C16 14.3088 15.3777 15.2837 14.3274 15.9534C13.2568 16.636 11.7351 17 10 17C8.26489 17 6.74318 16.636 5.67262 15.9534C4.62226 15.2837 4 14.3088 4 13Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 789 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 4C4 1.8 5.8 0 8 0C11.5 0 13.3 4.3 10.9 6.9C8.3 9.3 4 7.5 4 4ZM16 13.9V16H0V14.1C0 11.9 3.5 10.1 8 10.1C12.5 10.1 16 11.8 16 13.9Z" fill="#6F42C1"/>
</svg>

After

Width:  |  Height:  |  Size: 303 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.5 9C11.5 9.65311 11.0826 10.2087 10.5 10.4146V12.5C10.5 12.7761 10.2761 13 10 13C9.72386 13 9.5 12.7761 9.5 12.5V10.4146C8.9174 10.2087 8.5 9.65311 8.5 9C8.5 8.17157 9.17157 7.5 10 7.5C10.8284 7.5 11.5 8.17157 11.5 9ZM10.2774 2.08397C10.1094 1.97201 9.8906 1.97201 9.72265 2.08397C7.78446 3.3761 5.68833 4.1823 3.42929 4.50503C3.18296 4.54021 3 4.75117 3 5V9.5C3 13.3913 5.30699 16.2307 9.82051 17.9667C9.93605 18.0111 10.064 18.0111 10.1795 17.9667C14.693 16.2307 17 13.3913 17 9.5V5C17 4.75117 16.817 4.54021 16.5707 4.50503C14.3117 4.1823 12.2155 3.3761 10.2774 2.08397ZM4 5.42787C5.98541 5.09055 7.85275 4.39606 9.59914 3.34583L10 3.09715L10.4009 3.34583C12.1473 4.39606 14.0146 5.09055 16 5.42787V9.5C16 12.892 14.0321 15.3634 10 16.9632C5.96795 15.3634 4 12.892 4 9.5V5.42787Z" fill="#242424"/>
</svg>

After

Width:  |  Height:  |  Size: 917 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.41876 0.090625C8.28751 0.03125 8.14689 0 8.00001 0C7.85314 0 7.71251 0.03125 7.58126 0.090625L1.69689 2.5875C1.00939 2.87813 0.496889 3.55625 0.500014 4.375C0.515639 7.475 1.79064 13.1469 7.17501 15.725C7.69689 15.975 8.30314 15.975 8.82501 15.725C14.2094 13.1469 15.4844 7.475 15.5 4.375C15.5031 3.55625 14.9906 2.87813 14.3031 2.5875L8.41876 0.090625ZM9.75001 6.5C9.75001 7.19688 9.34064 7.8 8.75001 8.08125V10.25C8.75001 10.6656 8.41564 11 8.00001 11C7.58439 11 7.25001 10.6656 7.25001 10.25V8.08125C6.65939 7.8 6.25001 7.19688 6.25001 6.5C6.25001 5.53438 7.03439 4.75 8.00001 4.75C8.96564 4.75 9.75001 5.53438 9.75001 6.5Z" fill="#6C757D"/>
</svg>

After

Width:  |  Height:  |  Size: 760 B

View File

@ -0,0 +1,4 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19 10C19 5.02948 14.9705 1 10 1C5.02948 1 1 5.02948 1 10C1 14.2207 3.90592 17.7623 7.82596 18.7351V12.7504H5.97016V10H7.82596V8.81488C7.82596 5.75164 9.21232 4.3318 12.2198 4.3318C12.79 4.3318 13.7739 4.44376 14.1763 4.55536V7.04836C13.9639 7.02604 13.5949 7.01488 13.1367 7.01488C11.661 7.01488 11.0908 7.57396 11.0908 9.02728V10H14.0305L13.5255 12.7504H11.0908V18.9341C15.5465 18.3959 19 14.6015 19 10Z" fill="#0866FF"/>
<path d="M13.5255 12.7504L14.0307 10H11.0909V9.0273C11.0909 7.57398 11.6611 7.0149 13.1367 7.0149C13.5951 7.0149 13.9641 7.02606 14.1765 7.04838V4.55538C13.7739 4.44342 12.79 4.33182 12.2198 4.33182C9.21238 4.33182 7.82602 5.75166 7.82602 8.8149V10H5.97021V12.7504H7.82602V18.7351C8.52226 18.9079 9.25054 19 10.0001 19C10.3691 19 10.733 18.9773 11.0905 18.9341V12.7504H13.5255Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 930 B

View File

@ -0,0 +1 @@
<svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="m16 8c0-4.41824-3.5818-8-8-8-4.41824 0-8 3.58176-8 8 0 3.7517 2.58304 6.8998 6.06752 7.7645v-5.3197h-1.6496v-2.4448h1.6496v-1.05344c0-2.72288 1.23232-3.98496 3.9056-3.98496.50688 0 1.38148.09952 1.73918.19872v2.216c-.1888-.01984-.5168-.02976-.9241-.02976-1.31172 0-1.8186.49696-1.8186 1.7888v.86464h2.6131l-.4489 2.4448h-2.1642v5.4966c3.9606-.4784 7.0304-3.8512 7.0304-7.9414z" fill="#0866ff"/><path d="m11.1338 10.4448.449-2.44479h-2.61315v-.86464c0-1.29184.50688-1.7888 1.81855-1.7888.4074 0 .7354.00992.9242.02976v-2.216c-.3578-.09952-1.2324-.19872-1.73923-.19872-2.67328 0-3.9056 1.26208-3.9056 3.98496v1.05344h-1.6496v2.44479h1.6496v5.3197c.61888.1536 1.26624.2355 1.93248.2355.328 0 .65152-.0202.96928-.0586v-5.4966z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 847 B

View File

@ -0,0 +1,6 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.0001 10.3921C19.0001 9.74089 18.9417 9.11477 18.8331 8.51367H10.1841V12.0659H15.1263C14.9135 13.2138 14.2665 14.1865 13.2939 14.8376V17.1419H16.2618C17.9983 15.5431 19.0001 13.1888 19.0001 10.3921Z" fill="#4285F4"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1834 19.3665C12.6629 19.3665 14.7417 18.5442 16.2611 17.1417L13.2931 14.8375C12.4709 15.3885 11.419 15.7141 10.1834 15.7141C7.79154 15.7141 5.76703 14.0987 5.04489 11.928H1.97681V14.3074C3.48789 17.3086 6.59353 19.3665 10.1834 19.3665Z" fill="#34A853"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.04484 11.9282C4.86118 11.3772 4.75683 10.7887 4.75683 10.1834C4.75683 9.57815 4.86118 8.98958 5.04484 8.43858V6.05927H1.97678C1.35481 7.29902 1 8.70156 1 10.1834C1 11.6653 1.35481 13.0679 1.97678 14.3076L5.04484 11.9282Z" fill="#FBBC05"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1834 4.65247C11.5317 4.65247 12.7421 5.1158 13.6939 6.02579L16.3278 3.39184C14.7375 1.90999 12.6587 1 10.1834 1C6.59353 1 3.48789 3.0579 1.97681 6.05919L5.04489 8.4385C5.76703 6.2679 7.79154 4.65247 10.1834 4.65247Z" fill="#EA4335"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><g clip-rule="evenodd" fill-rule="evenodd"><path d="m15.361 8.17426c0-.54364-.0488-1.06636-.1394-1.56818h-7.22062v2.9656h4.12602c-.1777.95832-.7178 1.77032-1.5298 2.31392v1.9237h2.4777c1.4497-1.3347 2.2861-3.3002 2.2861-5.63504z" fill="#4285f4"/><path d="m8.00063 15.6665c2.06997 0 3.80547-.6865 5.07397-1.8574l-2.4778-1.9236c-.68648.46-1.56466.7318-2.59617.7318-1.99682 0-3.68697-1.3486-4.28985-3.16076h-2.56137v1.98636c1.26152 2.5056 3.85425 4.2236 6.85122 4.2236z" fill="#34a853"/><path d="m3.7108 9.4567c-.15333-.46-.24045-.95136-.24045-1.45666 0-.50531.08712-.99667.24045-1.45667v-1.98636h-2.56136c-.519244 1.035-.815456 2.20591-.815456 3.44303s.296212 2.40806.815456 3.44306z" fill="#fbbc05"/><path d="m8.00063 3.38256c1.1256 0 2.13617.38681 2.93077 1.14651l2.1989-2.19894c-1.3277-1.23712-3.0632-1.996817-5.12967-1.996817-2.99697 0-5.5897 1.718027-6.85122 4.223637l2.56137 1.98636c.60288-1.81212 2.29303-3.16075 4.28985-3.16075z" fill="#ea4335"/></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,6 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1H9.5537V9.55349H1V1Z" fill="#F25022"/>
<path d="M10.4463 1H19V9.55349H10.4463V1Z" fill="#7FBA00"/>
<path d="M1 10.4465H9.5537V19H1V10.4465Z" fill="#00A4EF"/>
<path d="M10.4463 10.4465H19V19H10.4463V10.4465Z" fill="#FFB900"/>
</svg>

After

Width:  |  Height:  |  Size: 341 B

View File

@ -0,0 +1 @@
<svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m0 0h16v16h-16z"/></clipPath><g clip-path="url(#a)"><path d="m0 0h7.6031v7.6031h-7.6031z" fill="#f25022"/><path d="m8.39648 0h7.60312v7.6031h-7.60312z" fill="#7fba00"/><path d="m0 8.39691h7.6031v7.60309h-7.6031z" fill="#00a4ef"/><path d="m8.39648 8.39691h7.60312v7.60309h-7.60312z" fill="#ffb900"/></g></svg>

After

Width:  |  Height:  |  Size: 472 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.6649 8.65492L18.1796 1.24487H16.6359L10.9791 7.67891L6.46104 1.24487H1.25L8.08219 10.9743L1.25 18.7449H2.79389L8.76759 11.9503L13.539 18.7449H18.75L11.6649 8.65492ZM3.35016 2.38209H5.72148L16.6366 17.6593H14.2653L3.35016 2.38209Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 362 B

View File

@ -0,0 +1 @@
<svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m0 0h16v16h-16z"/></clipPath><g clip-path="url(#a)"><path d="m9.31264 6.77552 5.82526-6.77143064h-1.3804l-5.05808 5.87954064-4.03989-5.87954064h-4.65953l6.10911 8.89090064-6.10911 7.10091h1.38049l5.34148-6.20902 4.26643 6.20902h4.6595l-6.3356-9.22038zm-1.89077 2.1978-.61898-.88533-4.925-7.04469h2.12035l3.97453 5.68529.61898.88533 5.16645 7.38998h-2.1204l-4.21593-6.03024z" fill="#000"/></g></svg>

After

Width:  |  Height:  |  Size: 562 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.91075 7.38266C2.28004 6.24053 2.88839 5.19213 3.69109 4.30364C3.82683 4.15339 4.03978 4.09984 4.23044 4.16802L6.14873 4.85392C6.6688 5.03977 7.24107 4.76883 7.42692 4.24875C7.4452 4.19762 7.45927 4.14507 7.469 4.09173L7.83446 2.08573C7.8708 1.88627 8.02398 1.7285 8.22227 1.6863C8.80246 1.5628 9.39734 1.5 10 1.5C10.6023 1.5 11.1968 1.56273 11.7767 1.68607C11.9749 1.72824 12.1281 1.88591 12.1645 2.08529L12.531 4.09165C12.6301 4.63497 13.1509 4.9951 13.6942 4.89601C13.7476 4.88627 13.8002 4.87219 13.8512 4.85395L15.7696 4.16802C15.9602 4.09984 16.1732 4.15339 16.3089 4.30364C17.1116 5.19213 17.72 6.24053 18.0893 7.38266C18.1516 7.57534 18.0915 7.78658 17.9371 7.91764L16.3823 9.23773C15.9613 9.5952 15.9098 10.2263 16.2673 10.6473C16.3024 10.6887 16.3409 10.7271 16.3823 10.7623L17.9371 12.0824C18.0915 12.2134 18.1516 12.4247 18.0893 12.6173C17.72 13.7595 17.1116 14.8079 16.3089 15.6964C16.1732 15.8466 15.9602 15.9002 15.7696 15.832L13.8513 15.1461C13.3312 14.9602 12.759 15.2312 12.5731 15.7512C12.5548 15.8024 12.5408 15.8549 12.531 15.9085L12.1645 17.9147C12.1281 18.1141 11.9749 18.2718 11.7767 18.3139C11.1968 18.4373 10.6023 18.5 10 18.5C9.39734 18.5 8.80246 18.4372 8.22227 18.3137C8.02398 18.2715 7.8708 18.1137 7.83446 17.9143L7.46902 15.9084C7.36993 15.365 6.84916 15.0049 6.30583 15.104C6.25241 15.1137 6.19987 15.1278 6.14881 15.1461L4.23044 15.832C4.03978 15.9002 3.82683 15.8466 3.69109 15.6964C2.88839 14.8079 2.28004 13.7595 1.91075 12.6173C1.84845 12.4247 1.90852 12.2134 2.06289 12.0824L3.61773 10.7623C4.03872 10.4048 4.09021 9.77373 3.73274 9.35274C3.69759 9.31135 3.65913 9.27288 3.61775 9.23775L2.06289 7.91764C1.90852 7.78658 1.84845 7.57534 1.91075 7.38266ZM2.9713 7.37709L4.26499 8.47546C4.34778 8.54576 4.42471 8.62269 4.49501 8.70548C5.20995 9.54746 5.10697 10.8096 4.26497 11.5246L2.9713 12.6229C3.26335 13.4051 3.6848 14.1322 4.21623 14.7751L5.81221 14.2044C5.91449 14.1679 6.01958 14.1397 6.12643 14.1202C7.21307 13.922 8.25462 14.6423 8.45281 15.729L8.75678 17.3975C9.16465 17.4655 9.58 17.5 10 17.5C10.4197 17.5 10.8348 17.4656 11.2424 17.3976L11.5472 15.7289C11.5667 15.6221 11.5949 15.517 11.6314 15.4147C12.0031 14.3746 13.1477 13.8327 14.1879 14.2044L15.7838 14.7751C16.3152 14.1322 16.7367 13.4051 17.0287 12.6229L15.735 11.5245C15.6522 11.4542 15.5753 11.3773 15.505 11.2945C14.7901 10.4525 14.8931 9.1904 15.7351 8.47544L17.0287 7.37709C16.7367 6.59486 16.3152 5.86783 15.7838 5.22494L14.1878 5.79559C14.0855 5.83214 13.9804 5.8603 13.8736 5.87979C12.787 6.07796 11.7454 5.3577 11.5473 4.27119L11.2424 2.60235C10.8348 2.53443 10.4197 2.5 10 2.5C9.58 2.5 9.16465 2.53448 8.75678 2.60249L8.45279 4.27105C8.43331 4.37791 8.40515 4.48299 8.3686 4.58527C7.99689 5.62542 6.85236 6.1673 5.81213 5.79556L4.21623 5.22494C3.6848 5.86783 3.26335 6.59486 2.9713 7.37709ZM7.50001 10C7.50001 8.61929 8.6193 7.5 10 7.5C11.3807 7.5 12.5 8.61929 12.5 10C12.5 11.3807 11.3807 12.5 10 12.5C8.6193 12.5 7.50001 11.3807 7.50001 10ZM8.50001 10C8.50001 10.8284 9.17159 11.5 10 11.5C10.8284 11.5 11.5 10.8284 11.5 10C11.5 9.17157 10.8284 8.5 10 8.5C9.17159 8.5 8.50001 9.17157 8.50001 10Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 4.79997C9.80775 4.79997 11.3142 6.19997 11.3142 7.99997C11.3142 9.79997 9.80775 11.2 8 11.2C6.19225 11.2 4.68578 9.79997 4.68578 7.99997C4.68578 6.19997 6.19225 4.79997 8 4.79997ZM8 6.39997C7.09612 6.39997 6.39311 7.09997 6.39311 7.99997C6.39311 8.89997 7.09612 9.59997 8 9.59997C8.90388 9.59997 9.60689 8.89997 9.60689 7.99997C9.60689 7.09997 8.90388 6.39997 8 6.39997ZM6.39311 16C6.19225 16 5.99138 15.9 5.99138 15.7L5.69009 13.6C5.18794 13.4 4.68578 13.1 4.28406 12.8L2.27545 13.6C2.07458 13.7 1.87372 13.6 1.77329 13.4L0.166399 10.6C-0.0344624 10.4 -0.0344624 10.2 0.166399 10.1L1.87372 8.79997L1.77329 7.99997L1.87372 7.19997L0.166399 5.89997C-0.0344624 5.79997 -0.0344624 5.59997 0.0659684 5.39997L1.67286 2.59997C1.77329 2.39997 1.97415 2.39997 2.17501 2.39997L4.18363 3.19997C4.58535 2.89997 5.08751 2.59997 5.58966 2.39997L5.89095 0.299969C5.99138 0.0999695 6.09182 -3.05176e-05 6.39311 -3.05176e-05H9.70732C9.90819 -3.05176e-05 10.109 0.0999695 10.109 0.299969L10.4103 2.39997C10.9125 2.59997 11.4146 2.89997 11.8164 3.19997L13.825 2.39997C14.0258 2.29997 14.2267 2.39997 14.3271 2.59997L15.934 5.39997C16.0345 5.59997 16.0345 5.79997 15.8336 5.89997L14.1263 7.19997L14.2267 7.99997L14.1263 8.79997L15.8336 10.1C16.0345 10.2 16.0345 10.4 15.934 10.6L14.3271 13.4C14.2267 13.6 14.0258 13.6 13.825 13.6L11.8164 12.8C11.4146 13.1 10.9125 13.4 10.4103 13.6L10.109 15.7C10.109 15.9 9.90819 16 9.70732 16H6.39311ZM7.39742 1.59997L7.09612 3.69997C6.09182 3.89997 5.18794 4.39997 4.58535 5.09997L2.57674 4.29997L1.97415 5.29997L3.68148 6.49997C3.38018 7.39997 3.38018 8.49997 3.68148 9.39997L1.97415 10.7L2.57674 11.7L4.58535 10.9C5.18794 11.6 6.09182 12.1 7.09612 12.3L7.39742 14.4H8.60259L8.90388 12.3C9.90819 12.1 10.7116 11.6 11.4146 10.9L13.4233 11.7L14.0258 10.7L12.3185 9.49997C12.6198 8.59997 12.6198 7.49997 12.3185 6.59997L14.0258 5.29997L13.4233 4.29997L11.4146 5.09997C10.8121 4.39997 9.90819 3.89997 8.90388 3.69997L8.60259 1.59997H7.39742Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 7C8 5.89543 8.89543 5 10 5C11.1046 5 12 5.89543 12 7C12 8.10457 11.1046 9 10 9C8.89543 9 8 8.10457 8 7ZM7.49998 10L12.5 10C13.3284 10 14 10.6716 14 11.5C14 12.6161 13.541 13.5103 12.7879 14.1148C12.0466 14.7098 11.0531 15 10 15C8.94692 15 7.95342 14.7098 7.21215 14.1148C6.45897 13.5103 6 12.6161 6 11.5C6 10.6716 6.67156 10 7.49998 10ZM10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2ZM3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 688 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 13.8C6 13.8 4.2 12.8 3.2 11.2C3.2 9.6 6.4 8.7 8 8.7C9.6 8.7 12.8 9.6 12.8 11.2C11.8 12.7 10 13.8 8 13.8ZM8 2.4C9.3 2.4 10.4 3.5 10.4 4.8C10.4 6.1 9.3 7.2 8 7.2C6.7 7.2 5.6 6.1 5.6 4.8C5.6 3.5 6.7 2.4 8 2.4ZM8 0C3.6 0 0 3.6 0 8C0 12.4 3.6 16 8 16C12.4 16 16 12.4 16 8C16 3.6 12.4 0 8 0Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 417 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.3544 15.8529C12.1594 16.0485 11.8429 16.0491 11.6472 15.8542L6.16276 10.3892C5.94705 10.1743 5.94705 9.82495 6.16276 9.61L11.6472 4.14502C11.8429 3.95011 12.1594 3.95067 12.3544 4.14628C12.5493 4.34189 12.5487 4.65848 12.3531 4.85339L7.18851 9.99961L12.3531 15.1458C12.5487 15.3407 12.5493 15.6573 12.3544 15.8529Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 447 B

View File

@ -0,0 +1,3 @@
<svg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 12.5L7.5 14L0.5 7L7.5 0L9 1.5L3.5 7L9 12.5Z" fill="#474747"/>
</svg>

After

Width:  |  Height:  |  Size: 215 B

View File

@ -0,0 +1,43 @@
<svg xmlns="http://www.w3.org/2000/svg">
<symbol id="counter" width="104" height="104" viewBox="0 0 104 104">
<path d="M8 54H96V88C96 91.3137 93.3137 94 90 94H14C10.6863 94 8 91.3137 8 88V54Z" fill="#8E9195"/>
<rect x="8" y="12" width="88" height="80" rx="6" fill="#E1E2E4"/>
<path d="M8 18C8 14.6863 10.6863 12 14 12H90C93.3137 12 96 14.6863 96 18V28H8V18Z" fill="white"/>
<rect x="66" y="18" width="24" height="4" rx="2" fill="#8E9195"/>
<rect x="44" y="18" width="4" height="4" rx="2" fill="#8E9195"/>
<rect x="50" y="18" width="4" height="4" rx="2" fill="#8E9195"/>
<rect x="56" y="18" width="4" height="4" rx="2" fill="#8E9195"/>
<rect x="12" y="16" width="8" height="8" rx="4" fill="var(--bs-primary, var(--DS-primary-90))" />
<path d="M35 44C35 41.7909 36.7909 40 39 40H65C67.2091 40 69 41.7909 69 44V76C69 78.2091 67.2091 80 65 80H39C36.7909 80 35 78.2091 35 76V44Z" fill="white"/>
<path d="M52.4983 72.77C54.2039 72.77 55.7046 72.471 57.0004 71.8729C58.3073 71.2748 59.3317 70.4442 60.0738 69.3809C60.8158 68.3177 61.1869 67.105 61.1869 65.7427V65.7095C61.1869 64.026 60.6497 62.6748 59.5754 61.6559C58.5011 60.637 57.0834 60.0555 55.3225 59.9115V59.8285C56.2971 59.6291 57.161 59.2802 57.9141 58.7818C58.6783 58.2724 59.2764 57.6411 59.7083 56.888C60.1513 56.1238 60.3728 55.2433 60.3728 54.2465V54.2133C60.3728 52.9839 60.0461 51.9041 59.3927 50.9737C58.7392 50.0434 57.82 49.318 56.6349 48.7974C55.4498 48.2658 54.0599 48 52.465 48C50.9034 48 49.5245 48.2769 48.3284 48.8307C47.1433 49.3733 46.1908 50.1431 45.471 51.1399C44.7621 52.1366 44.3413 53.3051 44.2084 54.6452L44.1917 54.8279H47.7137L47.7303 54.6618C47.8078 53.9198 48.0515 53.2774 48.4613 52.7347C48.8711 52.192 49.4193 51.7767 50.106 51.4887C50.7927 51.2008 51.579 51.0568 52.465 51.0568C53.3732 51.0568 54.1429 51.2008 54.7742 51.4887C55.4166 51.7656 55.8984 52.1754 56.2196 52.7181C56.5518 53.2608 56.718 53.9198 56.718 54.695V54.7283C56.718 55.4703 56.5241 56.1293 56.1365 56.7052C55.7599 57.2811 55.2228 57.7352 54.525 58.0675C53.8384 58.3887 53.0409 58.5493 52.1328 58.5493H49.3252V61.4732H52.2491C53.8439 61.4732 55.101 61.8386 56.0202 62.5696C56.9395 63.2895 57.3991 64.3251 57.3991 65.6762V65.7095C57.3991 66.4737 57.1942 67.1548 56.7844 67.7529C56.3746 68.3509 55.7987 68.8216 55.0567 69.165C54.3257 69.4972 53.4729 69.6634 52.4983 69.6634C51.5015 69.6634 50.6265 69.5083 49.8734 69.1982C49.1314 68.8881 48.5333 68.4617 48.0792 67.919C47.6362 67.3652 47.3759 66.7395 47.2984 66.0417L47.2818 65.859H43.6934L43.71 66.0583C43.8207 67.3652 44.2471 68.5281 44.9892 69.5471C45.7312 70.5549 46.7391 71.3468 48.0127 71.9227C49.2975 72.4876 50.7927 72.77 52.4983 72.77Z" fill="#2E3134"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.9999 52C86.4183 52 90 55.5817 90 60C90 64.4183 86.4183 68 81.9999 68C77.5817 68 74 64.4183 74 60C74 55.5817 77.5817 52 81.9999 52Z" fill="var(--bs-primary, var(--DS-primary-90))" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M83 56C83 55.4477 82.5523 55 82 55C81.4477 55 81 55.4477 81 56V59H78C77.4477 59 77 59.4477 77 60C77 60.5523 77.4477 61 78 61H81V64C81 64.5523 81.4477 65 82 65C82.5523 65 83 64.5523 83 64V61H86C86.5523 61 87 60.5523 87 60C87 59.4477 86.5523 59 86 59H83V56Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9999 52C26.4183 52 30 55.5817 30 60C30 64.4183 26.4183 68 21.9999 68C17.5817 68 14 64.4183 14 60C14 55.5817 17.5817 52 21.9999 52Z" fill="#C5C7C9"/>
<path d="M17 60C17 59.4477 17.4477 59 18 59H26C26.5523 59 27 59.4477 27 60C27 60.5523 26.5523 61 26 61H18C17.4477 61 17 60.5523 17 60Z" fill="white"/>
</symbol>
<symbol id="weather" width="104" height="104" viewBox="0 0 104 104">
<path d="M74.5994 18.1863L72 12L69.4006 18.1863C70.2494 18.0635 71.1173 18 72 18C72.8827 18 73.7506 18.0635 74.5994 18.1863Z" fill="#FFDA6A"/>
<path d="M76.4171 18.546C78.1282 18.9776 79.7418 19.6543 81.2185 20.5365L81.1844 13.8269L76.4171 18.546Z" fill="#FFDA6A"/>
<path d="M82.7568 21.5663C84.1524 22.6081 85.3919 23.8476 86.4337 25.2432L88.9706 19.0294L82.7568 21.5663Z" fill="#FFDA6A"/>
<path d="M87.4635 26.7815C88.3457 28.2582 89.0224 29.8718 89.454 31.5829L94.1731 26.8156L87.4635 26.7815Z" fill="#FFDA6A"/>
<path d="M89.8137 33.4006C89.9365 34.2494 90 35.1173 90 36C90 36.8827 89.9365 37.7506 89.8137 38.5994L96 36L89.8137 33.4006Z" fill="#FFDA6A"/>
<path d="M89.454 40.4171C89.0224 42.1282 88.3457 43.7418 87.4635 45.2185L94.1731 45.1844L89.454 40.4171Z" fill="#FFDA6A"/>
<path d="M86.4337 46.7568C85.3919 48.1524 84.1524 49.3919 82.7568 50.4337L88.9706 52.9706L86.4337 46.7568Z" fill="#FFDA6A"/>
<path d="M81.2185 51.4635C79.7418 52.3457 78.1282 53.0224 76.4171 53.454L81.1844 58.1731L81.2185 51.4635Z" fill="#FFDA6A"/>
<path d="M74.5994 53.8137C73.7506 53.9365 72.8827 54 72 54C71.1173 54 70.2494 53.9365 69.4006 53.8137L72 60L74.5994 53.8137Z" fill="#FFDA6A"/>
<path d="M67.5829 53.454C65.8718 53.0224 64.2582 52.3457 62.7815 51.4635L62.8156 58.1731L67.5829 53.454Z" fill="#FFDA6A"/>
<path d="M61.2432 50.4337C59.8476 49.3919 58.6081 48.1524 57.5663 46.7568L55.0294 52.9706L61.2432 50.4337Z" fill="#FFDA6A"/>
<path d="M56.5365 45.2185C55.6543 43.7418 54.9776 42.1282 54.546 40.4171L49.8269 45.1844L56.5365 45.2185Z" fill="#FFDA6A"/>
<path d="M54.1863 38.5994C54.0635 37.7506 54 36.8827 54 36C54 35.1173 54.0635 34.2494 54.1863 33.4006L48 36L54.1863 38.5994Z" fill="#FFDA6A"/>
<path d="M54.546 31.5829C54.9776 29.8718 55.6543 28.2582 56.5365 26.7815L49.8269 26.8156L54.546 31.5829Z" fill="#FFDA6A"/>
<path d="M57.5663 25.2432C58.6081 23.8476 59.8476 22.6081 61.2432 21.5663L55.0294 19.0294L57.5663 25.2432Z" fill="#FFDA6A"/>
<path d="M62.7815 20.5365L62.8156 13.8269L67.5829 18.546C65.8718 18.9776 64.2582 19.6543 62.7815 20.5365Z" fill="#FFDA6A"/>
<circle cx="72" cy="36" r="15" fill="#E8B249"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27 54C27 66.7025 37.2975 77 50 77H80C88.8366 77 96 69.8366 96 61C96 52.1634 88.8366 45 80 45C77.0716 45 74.327 45.7867 71.9659 47.1603C69.0538 37.7978 60.3207 31 50 31C37.2975 31 27 41.2975 27 54Z" fill="#8E9195"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27 52C27 64.7025 37.2975 75 50 75H80C88.8366 75 96 67.8366 96 59C96 50.1634 88.8366 43 80 43C77.0716 43 74.327 43.7867 71.9659 45.1603C69.0538 35.7978 60.3207 29 50 29C37.2975 29 27 39.2975 27 52Z" fill="#C5C7C9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56 88H21C13.8203 88 8 82.1797 8 75C8 67.8203 13.8203 62 21 62C21.1487 62 21.2968 62.0025 21.4443 62.0075C23.2605 53.9878 30.431 48 39 48C48.2764 48 55.9138 55.0171 56.8937 64.0328C63.1038 64.49 68 69.6732 68 76C68 82.6274 62.6274 88 56 88Z" fill="#8E9195"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56 86H21C13.8203 86 8 80.1797 8 73C8 65.8203 13.8203 60 21 60C21.1487 60 21.2968 60.0025 21.4443 60.0075C23.2605 51.9878 30.431 46 39 46C48.2764 46 55.9138 53.0171 56.8937 62.0328C63.1038 62.49 68 67.6732 68 74C68 80.6274 62.6274 86 56 86Z" fill="#E1E2E4"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M78 76C78 67.1634 70.8366 60 62 60C54.4554 60 48.1304 65.2219 46.4422 72.2487C45.6537 72.0857 44.8368 72 44 72C37.3726 72 32 77.3726 32 84C32 90.6274 37.3726 96 44 96H78C83.5228 96 88 91.5228 88 86C88 80.4772 83.5228 76 78 76Z" fill="#8E9195"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M78 74C78 65.1634 70.8366 58 62 58C54.4554 58 48.1304 63.2219 46.4422 70.2487C45.6537 70.0857 44.8368 70 44 70C37.3726 70 32 75.3726 32 82C32 88.6274 37.3726 94 44 94H78C83.5229 94 88 89.5229 88 84C88 78.4771 83.5229 74 78 74Z" fill="white"/>
</symbol>
</svg>

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.08859 4.21569L4.14645 4.14645C4.32001 3.97288 4.58944 3.9536 4.78431 4.08859L4.85355 4.14645L10 9.293L15.1464 4.14645C15.32 3.97288 15.5894 3.9536 15.7843 4.08859L15.8536 4.14645C16.0271 4.32001 16.0464 4.58944 15.9114 4.78431L15.8536 4.85355L10.707 10L15.8536 15.1464C16.0271 15.32 16.0464 15.5894 15.9114 15.7843L15.8536 15.8536C15.68 16.0271 15.4106 16.0464 15.2157 15.9114L15.1464 15.8536L10 10.707L4.85355 15.8536C4.67999 16.0271 4.41056 16.0464 4.21569 15.9114L4.14645 15.8536C3.97288 15.68 3.9536 15.4106 4.08859 15.2157L4.14645 15.1464L9.293 10L4.14645 4.85355C3.97288 4.67999 3.9536 4.41056 4.08859 4.21569Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 748 B

View File

@ -0,0 +1,3 @@
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 8.50966L8.51064 9.99902L5 6.48838L1.48936 9.99902L0 8.50966L3.51064 4.99902L0 1.48838L1.48936 -0.000976562L5 3.50966L8.51064 -0.000976562L10 1.48838L6.48936 4.99902L10 8.50966Z" fill="#F8F9FA"/>
</svg>

After

Width:  |  Height:  |  Size: 351 B

View File

@ -0,0 +1,4 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 7C12.2761 7 12.4999 7.22394 12.5 7.5C12.5 7.77614 12.2761 8 12 8H9.24805L9.05859 9.74023C9.1367 9.73932 9.2198 9.73775 9.30469 9.7373C9.72449 9.73511 10.2541 9.74019 10.5254 9.77832C12.0975 9.99951 13.1926 11.4532 12.9717 13.0254C12.7506 14.5976 11.2969 15.6926 9.72461 15.4717C8.75136 15.3348 7.96091 14.7255 7.55273 13.9102C7.42918 13.6632 7.52946 13.3629 7.77637 13.2393C8.02327 13.1158 8.32368 13.216 8.44727 13.4629C8.71464 13.9967 9.23033 14.3924 9.86426 14.4814C10.8896 14.6254 11.8373 13.9111 11.9814 12.8857C12.1255 11.8604 11.4111 10.9127 10.3857 10.7686C10.2017 10.7427 9.75352 10.735 9.30957 10.7373C9.09662 10.7384 8.89716 10.7423 8.75098 10.7451C8.67802 10.7465 8.61837 10.7471 8.57715 10.748L8.53027 10.75H8.51367C8.36935 10.754 8.2307 10.695 8.13281 10.5889C8.03499 10.4828 7.98738 10.3398 8.00293 10.1963L8.30273 7.44629C8.3304 7.1927 8.54473 7.00009 8.7998 7H12Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.7559 2.0127C15.0164 2.14082 16 3.20566 16 4.5V15.5C16 16.8807 14.8807 18 13.5 18H6.5C5.11929 18 4 16.8807 4 15.5V4.5C4 3.11929 5.11929 2 6.5 2H13.5L13.7559 2.0127ZM6.5 3C5.67157 3 5 3.67157 5 4.5V15.5C5 16.3284 5.67157 17 6.5 17H13.5C14.3284 17 15 16.3284 15 15.5V4.5C15 3.67157 14.3284 3 13.5 3H12.8369C12.4546 4.15802 11.4097 5 10 5C9.13757 5 8.24072 4.71025 7.56543 3.95996C7.32396 3.69166 7.12023 3.37196 6.95605 3H6.5ZM8.27148 3C8.61688 3.59728 9.26022 4 10 4C10.8124 4 11.4337 3.60128 11.7549 3H8.27148Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 0C0.895431 0 0 0.895431 0 2V14C0 15.1046 0.895431 16 2 16H14C15.1046 16 16 15.1046 16 14V2C16 0.895431 15.1046 0 14 0H2ZM14 2H2V14H14V2Z" fill="white"/>
<path d="M6.02051 3.24316C6.41113 3.8291 7.02962 4.12207 7.87598 4.12207C8.69303 4.12207 9.30339 3.80632 9.70703 3.1748C9.91347 2.85442 10.0675 2.46282 10.1692 2H8.64112C8.61907 2.12187 8.59351 2.2319 8.56445 2.33008C8.44401 2.73698 8.21452 2.94043 7.87598 2.94043C7.56999 2.94043 7.34701 2.74349 7.20703 2.34961C7.17146 2.24629 7.14052 2.12976 7.11421 2L5.55091 2C5.64742 2.50393 5.80395 2.91832 6.02051 3.24316Z" fill="white"/>
<path d="M6.19629 11.4521L5.4834 12.3945C5.81869 12.6452 6.16048 12.8291 6.50879 12.9463C6.8571 13.0635 7.23958 13.1221 7.65625 13.1221C8.47331 13.1221 9.11296 12.8991 9.5752 12.4531C10.0374 12.0039 10.2686 11.4408 10.2686 10.7637C10.2686 10.0964 10.0651 9.57389 9.6582 9.19629C9.2513 8.81869 8.68815 8.62988 7.96875 8.62988C7.8776 8.62988 7.77832 8.63314 7.6709 8.63965C7.56348 8.6429 7.44629 8.64941 7.31934 8.65918L7.41699 7.25781H9.94629V5.99805H6.24023L5.97656 9.9043C6.21094 9.87826 6.43229 9.85872 6.64062 9.8457C6.85221 9.82943 7.04753 9.82129 7.22656 9.82129C7.7181 9.82129 8.08757 9.90755 8.33496 10.0801C8.58236 10.2526 8.70605 10.5277 8.70605 10.9053C8.70605 11.208 8.6084 11.457 8.41309 11.6523C8.21777 11.8444 7.94271 11.9404 7.58789 11.9404C7.35352 11.9404 7.11914 11.9014 6.88477 11.8232C6.65039 11.7451 6.4209 11.6214 6.19629 11.4521Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 2C7.77614 2 8 2.22386 8 2.5V4.5C8 4.77614 7.77614 5 7.5 5C7.22386 5 7 4.77614 7 4.5V2.5C7 2.22386 7.22386 2 7.5 2ZM3.61091 3.61091C3.80618 3.41565 4.12276 3.41565 4.31802 3.61091L5.73223 5.02513C5.9275 5.22039 5.9275 5.53697 5.73223 5.73223C5.53697 5.92749 5.22039 5.92749 5.02513 5.73223L3.61091 4.31802C3.41565 4.12276 3.41565 3.80617 3.61091 3.61091ZM11.3891 3.61091C11.5843 3.80617 11.5843 4.12276 11.3891 4.31802L9.97487 5.73223C9.77961 5.9275 9.46303 5.9275 9.26777 5.73223C9.0725 5.53697 9.0725 5.22039 9.26777 5.02513L10.682 3.61091C10.8772 3.41565 11.1938 3.41565 11.3891 3.61091ZM2 7.5C2 7.22386 2.22386 7 2.5 7H4.5C4.77614 7 5 7.22386 5 7.5C5 7.77614 4.77614 8 4.5 8H2.5C2.22386 8 2 7.77614 2 7.5ZM8.64019 7.2993C7.98886 6.75653 7 7.21968 7 8.06752V17.1693C7 18.0926 8.14454 18.5227 8.75258 17.8278L10.7787 15.5122C11.0635 15.1867 11.475 15 11.9075 15H15.119C16.0543 15 16.4777 13.8305 15.7592 13.2318L8.64019 7.2993ZM8 17.1693L8 8.06752L15.119 14H11.9075C11.1866 14 10.5008 14.3112 10.0261 14.8537L8 17.1693Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,5 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.59132 10.1255C4.82492 10.6825 4.37405 11.27 3.8043 11.0694C3.02598 10.7952 2.29531 10.347 1.67285 9.7245C-0.551759 7.49988 -0.551759 3.89307 1.67285 1.66846C3.89747 -0.556153 7.50428 -0.556153 9.72889 1.66846C10.3513 2.29092 10.7996 3.02158 11.0738 3.79991C11.2744 4.36965 10.6869 4.82053 10.1299 4.58692C9.91201 4.49557 9.75009 4.3104 9.66146 4.09142C9.4529 3.57613 9.13971 3.09329 8.72189 2.67546C7.05343 1.007 4.34832 1.007 2.67986 2.67546C1.0114 4.34392 1.0114 7.04903 2.67986 8.71749C3.09769 9.13532 3.58052 9.44851 4.09581 9.65707C4.31479 9.7457 4.49996 9.90762 4.59132 10.1255Z" fill="#F8F9FA"/>
<path d="M5.82029 3.56305C6.28325 3.10009 6.08206 2.33146 5.4295 2.3846C4.67165 2.44631 3.93093 2.76706 3.35116 3.34684C2.77138 3.92661 2.45063 4.66733 2.38892 5.42518C2.33578 6.07774 3.10441 6.27893 3.56737 5.81597C3.72096 5.66238 3.80477 5.45583 3.85623 5.24481C3.93586 4.91832 4.10317 4.60884 4.35816 4.35384C4.61316 4.09885 4.92264 3.93154 5.24913 3.85191C5.46015 3.80045 5.66671 3.71664 5.82029 3.56305Z" fill="#F8F9FA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.60066 5.12396C5.67927 4.76958 4.77394 5.6749 5.12832 6.5963L7.69501 13.2697C8.05772 14.2127 9.37744 14.252 9.79555 13.3322L10.9021 10.8977L13.3365 9.79119C14.2564 9.37308 14.2171 8.05337 13.2741 7.69066L6.60066 5.12396ZM8.77297 12.3697L6.52227 6.51791L12.3741 8.76861L10.2873 9.71717C10.0365 9.83116 9.83551 10.0321 9.72153 10.2829L8.77297 12.3697Z" fill="#F8F9FA"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.5 5C5.22386 5 5 5.22386 5 5.5V7.5C5 7.77614 5.22386 8 5.5 8H12.5C12.7761 8 13 7.77614 13 7.5V5.5C13 5.22386 12.7761 5 12.5 5H5.5ZM6 7V6H12V7H6ZM3 4C3 2.89543 3.89543 2 5 2H13C14.1046 2 15 2.89543 15 4V16C15 17.1046 14.1046 18 13 18H5C3.89543 18 3 17.1046 3 16V4ZM5 3C4.44772 3 4 3.44772 4 4V16C4 16.5523 4.44772 17 5 17H13C13.5523 17 14 16.5523 14 16V4C14 3.44772 13.5523 3 13 3H5ZM16 6H16.5C16.7761 6 17 6.22386 17 6.5V8C17 8.27614 16.7761 8.5 16.5 8.5H16V6ZM16.5 9.5H16V12H16.5C16.7761 12 17 11.7761 17 11.5V10C17 9.72386 16.7761 9.5 16.5 9.5ZM16 13H16.5C16.7761 13 17 13.2239 17 13.5V15C17 15.2761 16.7761 15.5 16.5 15.5H16V13Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 762 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 5V3H2V2C2 0.9 2.9 0 4 0H8V7L10.5 5.5L13 7V0H14C15.1 0 16 0.9 16 2V14C16 15.1 15.1 16 14 16H4C3 16 2 15.1 2 14V13H0V11H2V9H0V7H2V5H0ZM4 7H2V9H4V7ZM4 5V3H2V5H4ZM4 13V11H2V13H4Z" fill="#F8F9FA"/>
</svg>

After

Width:  |  Height:  |  Size: 308 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.9975 2.38811C9.56767 1.87584 10.4323 1.87584 11.0025 2.38811L16.5025 7.32965C16.8191 7.61414 17 8.01977 17 8.44544V15.4996C17 16.328 16.3284 16.9996 15.5 16.9996H13C12.1716 16.9996 11.5 16.328 11.5 15.4996V11.9996C11.5 11.7234 11.2761 11.4996 11 11.4996H9C8.72386 11.4996 8.5 11.7234 8.5 11.9996V15.4996C8.5 16.328 7.82843 16.9996 7 16.9996H4.5C3.67157 16.9996 3 16.328 3 15.4996V8.44544C3 8.01977 3.18086 7.61414 3.4975 7.32965L8.9975 2.38811ZM10.3342 3.13197C10.1441 2.96122 9.85589 2.96122 9.66583 3.13197L4.16583 8.07351C4.06029 8.16834 4 8.30355 4 8.44544V15.4996C4 15.7757 4.22386 15.9996 4.5 15.9996H7C7.27614 15.9996 7.5 15.7757 7.5 15.4996V11.9996C7.5 11.1711 8.17157 10.4996 9 10.4996H11C11.8284 10.4996 12.5 11.1711 12.5 11.9996V15.4996C12.5 15.7757 12.7239 15.9996 13 15.9996H15.5C15.7761 15.9996 16 15.7757 16 15.4996V8.44544C16 8.30355 15.9397 8.16834 15.8342 8.07351L10.3342 3.13197Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 10.0009V14.0009H2V8.00095H0L8 0.000946045L16 8.00095H14V14.0009H10V10.0009H6Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 209 B

View File

@ -0,0 +1,16 @@
<svg width="144" height="24" viewBox="0 0 144 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M34.6184 3.1643C33.0578 3.1643 31.5947 3.31034 30.4731 3.50507V19.2779C31.3021 19.3753 32.4726 19.4726 33.9844 19.4726C36.7643 19.4726 39.0077 18.8398 40.4707 17.5254C41.69 16.4057 42.9092 14.4097 42.9092 10.9533C42.9092 8.03246 42.0313 6.08519 40.4707 4.81947C39.1052 3.74848 37.3007 3.1643 34.6184 3.1643ZM34.716 17.0385C34.2771 17.0385 33.8381 17.0385 33.5455 16.9899V5.74442C33.8869 5.69574 34.3746 5.59838 35.0086 5.59838C37.886 5.59838 39.6417 7.39959 39.6417 11.002C39.6417 15.2373 37.6421 17.0385 34.716 17.0385Z" fill="white"/>
<path d="M49.7369 7.49696C46.323 7.49696 44.421 10.3692 44.421 13.7282C44.421 17.3306 46.4693 19.57 50.0783 19.57C51.5413 19.57 52.8581 19.3266 53.8335 18.8884L53.3946 16.7465C52.6143 17.0385 51.6876 17.2333 50.566 17.2333C48.9078 17.2333 47.4935 16.4544 47.396 14.4584H54.37C54.4187 14.1176 54.4675 13.6795 54.4675 13.2414C54.4187 9.4929 52.5655 7.49696 49.7369 7.49696ZM47.3472 12.3164C47.4447 11.1481 48.0787 9.63895 49.5418 9.63895C51.0536 9.63895 51.5413 11.0994 51.5413 12.3164H47.3472Z" fill="white"/>
<path d="M63.0509 7.74037L61.5878 13.3874C61.3439 14.4097 61.1489 15.3347 60.9538 16.357H60.905C60.7099 15.3347 60.5149 14.4097 60.271 13.3874L58.7592 7.74037H55.4429L59.3444 19.3753H62.3193L66.2696 7.74037H63.0509Z" fill="white"/>
<path d="M2.04062 18.2556C1.45539 18.9858 1.01647 19.6673 0.723857 20.2515C0.626318 20.3976 0.480011 20.8357 0.480011 21.1278V21.5659C0.480011 22.2961 1.06524 22.8803 1.79678 22.8803H22.0848C22.8163 22.8803 23.4015 22.2961 23.4015 21.5659V5.98783C12.2822 7.93509 5.552 13.9229 2.04062 18.2556Z" fill="white"/>
<path d="M71.0978 12.3164H76.3649V9.78499H71.0978V5.89047H76.6575V3.31034H68.0253V19.3266H76.9989V16.7465H71.0978V12.3164Z" fill="white"/>
<path d="M88.6547 7.74037H85.3872L84.363 9.83367C84.0704 10.4179 83.7778 11.0507 83.4851 11.6836H83.4364C83.1438 11.0994 82.8512 10.5152 82.5585 9.83367L81.4368 7.74037H78.023L81.4856 13.4848L77.9742 19.3753H81.2905L82.3635 17.1359C82.6561 16.5517 82.9487 15.9189 83.2413 15.286H83.2901C83.5827 15.9189 83.8753 16.503 84.1679 17.1359L85.3384 19.3753H88.801L85.2896 13.3874L88.6547 7.74037Z" fill="white"/>
<path d="M96.5065 7.49696C94.9947 7.49696 93.8242 8.12982 93.0439 9.34686H92.9951L92.8488 7.74037H90.1665C90.2153 8.81136 90.2641 10.0284 90.2641 11.5375V24H93.3365V18.2069H93.3853C93.873 18.9858 94.8484 19.57 96.1164 19.57C98.4573 19.57 100.896 17.6714 100.896 13.4361C100.945 9.83367 99.0425 7.49696 96.5065 7.49696ZM95.4336 17.1359C94.4094 17.1359 93.3853 16.3083 93.3853 14.6531V12.4625C93.3853 11.0507 94.3119 9.93103 95.5311 9.93103C97.043 9.93103 97.8721 11.4402 97.8721 13.4848C97.8233 15.6268 96.9942 17.1359 95.4336 17.1359Z" fill="white"/>
<path d="M105.919 9.73631H105.821L105.675 7.69168H103.042C103.09 8.714 103.139 9.88235 103.139 11.3428V19.3266H106.212V13.3387C106.212 11.3428 107.285 10.4179 108.65 10.4179C108.943 10.4179 109.235 10.4179 109.43 10.4665V7.54564C109.235 7.49696 109.04 7.49696 108.748 7.49696C107.675 7.49696 106.455 8.22718 105.919 9.73631Z" fill="white"/>
<path d="M115.868 7.49696C112.454 7.49696 110.552 10.3692 110.552 13.7282C110.552 17.3306 112.6 19.57 116.209 19.57C117.672 19.57 118.989 19.3266 119.965 18.8884L119.526 16.7465C118.745 17.0385 117.819 17.2333 116.697 17.2333C115.039 17.2333 113.625 16.4544 113.527 14.4584H120.452C120.501 14.1176 120.55 13.6795 120.55 13.2414C120.55 9.4929 118.697 7.49696 115.868 7.49696ZM113.478 12.3164C113.576 11.1481 114.21 9.63894 115.673 9.63894C117.185 9.63894 117.672 11.0994 117.672 12.3164H113.478Z" fill="white"/>
<path d="M126.938 12.3164C125.622 11.7323 125.183 11.4402 125.183 10.7586C125.183 10.1258 125.67 9.63894 126.646 9.63894C127.524 9.63894 128.353 9.97972 128.84 10.2231L129.426 8.03245C128.743 7.69168 127.719 7.39959 126.548 7.39959C123.964 7.39959 122.305 9.00609 122.305 11.0507C122.305 12.3164 123.086 13.5335 125.28 14.4097C126.548 14.9452 126.938 15.3347 126.938 16.0162C126.938 16.7465 126.402 17.1846 125.329 17.1846C124.354 17.1846 123.232 16.7465 122.598 16.4057L122.013 18.645C122.793 19.0832 124.012 19.4239 125.28 19.4239C128.206 19.4239 129.865 17.9635 129.865 15.7728C129.816 14.2637 128.938 13.144 126.938 12.3164Z" fill="white"/>
<path d="M136.205 12.3164C134.888 11.7323 134.449 11.4402 134.449 10.7586C134.449 10.1258 134.937 9.63894 135.912 9.63894C136.79 9.63894 137.619 9.97972 138.107 10.2231L138.692 8.03245C138.009 7.69168 136.985 7.39959 135.814 7.39959C133.23 7.39959 131.572 9.00609 131.572 11.0507C131.572 12.3164 132.352 13.5335 134.546 14.4097C135.814 14.9452 136.205 15.3347 136.205 16.0162C136.205 16.7465 135.668 17.1846 134.595 17.1846C133.62 17.1846 132.498 16.7465 131.864 16.4057L131.279 18.645C132.059 19.0832 133.278 19.4239 134.546 19.4239C137.473 19.4239 139.131 17.9635 139.131 15.7728C139.082 14.2637 138.155 13.144 136.205 12.3164Z" fill="white"/>
<path d="M22.0848 0H1.79678C1.06524 0 0.480011 0.584179 0.480011 1.3144V13.4361C4.47908 9.24949 11.6482 4.62475 22.5237 3.35903C22.8163 3.35903 23.4015 3.21298 23.4015 2.43408V1.3144C23.4015 0.584179 22.8163 0 22.0848 0Z" fill="white"/>
<path d="M142.057 7.05882C142.398 6.96146 142.593 6.76674 142.593 6.47465C142.593 6.27992 142.545 6.13387 142.398 6.03651C142.252 5.93915 142.057 5.89047 141.764 5.89047H141.082V8.03246H141.52V7.15619H141.716C141.862 7.15619 141.959 7.25355 142.008 7.44828L142.203 7.98377H142.691L142.447 7.39959C142.301 7.20487 142.203 7.05882 142.057 7.05882ZM141.764 6.81542H141.472V6.18256H141.716C142.008 6.18256 142.106 6.27992 142.106 6.47465C142.106 6.57201 142.057 6.62069 142.008 6.71805C141.959 6.81542 141.911 6.81542 141.764 6.81542Z" fill="white"/>
<path d="M143.032 5.74442C142.691 5.40365 142.301 5.25761 141.813 5.25761C141.325 5.25761 140.886 5.40365 140.594 5.74442C140.252 6.08519 140.106 6.47465 140.106 6.96146C140.106 7.44828 140.252 7.83773 140.594 8.1785C140.935 8.47059 141.325 8.66531 141.813 8.66531C142.301 8.66531 142.691 8.51927 143.032 8.1785C143.374 7.83773 143.52 7.44828 143.52 6.96146C143.52 6.47465 143.374 6.08519 143.032 5.74442ZM142.837 7.98377C142.545 8.27586 142.203 8.42191 141.813 8.42191C141.423 8.42191 141.082 8.27586 140.789 8.03245C140.496 7.74037 140.35 7.39959 140.35 7.01014C140.35 6.62069 140.496 6.27992 140.789 5.98783C141.082 5.69574 141.423 5.5497 141.813 5.5497C142.203 5.5497 142.593 5.69574 142.837 5.98783C143.13 6.27992 143.276 6.62069 143.276 7.01014C143.227 7.35091 143.081 7.69168 142.837 7.98377Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 4.5C2 4.22386 2.22386 4 2.5 4H17.5C17.7761 4 18 4.22386 18 4.5C18 4.77614 17.7761 5 17.5 5H2.5C2.22386 5 2 4.77614 2 4.5ZM2 9.5C2 9.22386 2.22386 9 2.5 9H17.5C17.7761 9 18 9.22386 18 9.5C18 9.77614 17.7761 10 17.5 10H2.5C2.22386 10 2 9.77614 2 9.5ZM2.5 14C2.22386 14 2 14.2239 2 14.5C2 14.7761 2.22386 15 2.5 15H17.5C17.7761 15 18 14.7761 18 14.5C18 14.2239 17.7761 14 17.5 14H2.5Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 513 B

View File

@ -0,0 +1,5 @@
<svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0H0V2H16V0Z" fill="#F8F9FA"/>
<path d="M16 4H0V6H16V4Z" fill="#F8F9FA"/>
<path d="M0 8H16V10H0V8Z" fill="#F8F9FA"/>
</svg>

After

Width:  |  Height:  |  Size: 232 B

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 7C13.4646 7 14.8627 8.5736 15.066 10.474L15.1282 10.474C16.7143 10.474 18 11.711 18 13.237C18 14.763 16.7143 16 15.1282 16H6.8718C5.28575 16 4.00001 14.763 4.00001 13.237C4.00001 11.711 5.28575 10.474 6.87182 10.474L6.934 10.474C7.13852 8.56111 8.53544 7 11 7ZM11 8C9.35057 8 7.9129 9.27029 7.9129 11.0249C7.9129 11.303 7.65892 11.5211 7.36809 11.5211L6.81819 11.5211C5.81403 11.5211 5.00001 12.2999 5.00001 13.2605C5.00001 14.2212 5.81403 15 6.81819 15H15.1818C16.186 15 17 14.2212 17 13.2605C17 12.2999 16.186 11.5211 15.1818 11.5211L14.6319 11.5211C14.3411 11.5211 14.0871 11.303 14.0871 11.0249C14.0871 9.24779 12.6494 8 11 8ZM3.80323 9.70081C3.88315 9.9329 3.78237 10.1835 3.57561 10.2995L3.49326 10.3364L2.69185 10.6123C2.43075 10.7022 2.14621 10.5634 2.05631 10.3023C1.97639 10.0702 2.07717 9.81963 2.28393 9.70366L2.36628 9.66678L3.16769 9.39083C3.42879 9.30093 3.71333 9.43971 3.80323 9.70081ZM8.91929 5.50023C9.25181 5.66241 9.54462 5.87337 9.79331 6.12029C9.38698 6.20342 9.00724 6.33003 8.65692 6.4951C8.60128 6.46105 8.54207 6.42885 8.48091 6.39902C7.34909 5.84699 5.98405 6.31701 5.43202 7.44884C5.04721 8.23783 5.15904 9.14013 5.6455 9.80137C5.31553 9.89962 5.00518 10.0425 4.72106 10.2221C4.124 9.29064 4.01237 8.07839 4.53323 7.01047C5.32736 5.38225 7.29107 4.70609 8.91929 5.50023ZM2.91582 5.66976L3.00013 5.70192L3.76194 6.07348C4.01013 6.19453 4.1132 6.49387 3.99215 6.74206C3.88455 6.96268 3.63608 7.06863 3.40788 7.00443L3.32357 6.97227L2.56176 6.60072C2.31357 6.47966 2.2105 6.18033 2.33155 5.93214C2.43915 5.71152 2.68762 5.60557 2.91582 5.66976ZM9.98918 3.2954C10.2098 3.403 10.3157 3.65147 10.2515 3.87967L10.2194 3.96398L9.84783 4.72579C9.72678 4.97398 9.42745 5.07705 9.17925 4.956C8.95863 4.8484 8.85268 4.59993 8.91688 4.37173L8.94904 4.28742L9.3206 3.52561C9.44165 3.27742 9.74098 3.17435 9.98918 3.2954ZM6.19931 3.26298L6.23619 3.34533L6.51213 4.14674C6.60204 4.40784 6.46326 4.69238 6.20216 4.78228C5.97007 4.8622 5.71946 4.76142 5.60349 4.55466L5.56662 4.47231L5.29067 3.6709C5.20077 3.4098 5.33955 3.12526 5.60064 3.03536C5.83273 2.95544 6.08334 3.05622 6.19931 3.26298Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,6 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M8.47924 1.21032L7.50015 0L6.52105 1.21032L5.11379 0.544671L4.75679 2.05994L3.20007 2.07081L3.45 3.20213C3.94444 3.07028 4.46402 2.99999 5.00001 2.99999C7.61766 2.99999 9.84379 4.67628 10.6635 7.01395C10.7745 7.00471 10.8867 6.99999 11 6.99999C11.3552 6.99999 11.6995 7.04628 12.0273 7.13315L12.8622 6.72387L11.9001 5.5L12.8622 4.27613L11.4644 3.59091L11.8002 2.07081L10.2435 2.05994L9.88651 0.544671L8.47924 1.21032Z" fill="white"/>
<path d="M5 14C2.23858 14 0 11.7614 0 9C0 6.23858 2.23858 4 5 4C7.48716 4 9.55018 5.81599 9.93544 8.19437C10.2663 8.06877 10.6251 8 11 8C12.6569 8 14 9.34315 14 11C14 12.6569 12.6569 14 11 14H5Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 766 B

View File

@ -86,7 +86,7 @@ public class AuthController : ControllerBase
localStorage.removeItem("scannerpilot.inventurId"); localStorage.removeItem("scannerpilot.inventurId");
localStorage.removeItem("scannerpilot.user"); localStorage.removeItem("scannerpilot.user");
} catch(e) { console.warn("localStorage cleanup failed", e); } } catch(e) { console.warn("localStorage cleanup failed", e); }
window.location.href = '/login'; window.location.href = '/pvk/scanner/login';
</script> </script>
</body> </body>
</html> </html>

View File

@ -2,11 +2,9 @@
{ {
public class InventurHistorieEintrag public class InventurHistorieEintrag
{ {
public int Id { get; set; } public string Artikelnummer { get; set; } = "";
public string ArtikelNummer { get; set; } = "";
public string Bezeichnung { get; set; } = ""; public string Bezeichnung { get; set; } = "";
public int Variante { get; set; } public string Variante { get; set; } = "";
public int Menge { get; set; } public int Menge { get; set; }
public DateTime? CreatedAt { get; set; }
} }
} }

View File

@ -1,5 +1,6 @@
@page "/einstellungen" @page "/einstellungen"
@attribute [Authorize] @attribute [Authorize]
@inject NetworkInfoService NetInfo
<PageTitle>ScannerPilot - Einstellungen</PageTitle> <PageTitle>ScannerPilot - Einstellungen</PageTitle>
@ -20,6 +21,11 @@ else
<dt class="col-sm-3">ClientIP</dt> <dt class="col-sm-3">ClientIP</dt>
<dd class="col-sm-9">@currentIp</dd> <dd class="col-sm-9">@currentIp</dd>
<dt class="col-sm-3">MAC-Adresse</dt>
<dd class="col-sm-9">@macAdresse</dd>
</dl> </dl>
} }
@ -36,9 +42,11 @@ else
[Inject] private AuthenticationStateProvider AuthProvider { get; set; } = default!; [Inject] private AuthenticationStateProvider AuthProvider { get; set; } = default!;
[Inject] private IJSRuntime JS { get; set; } = default!; [Inject] private IJSRuntime JS { get; set; } = default!;
[Inject] private IHttpContextAccessor HttpContextAccessor { get; set; } = default!; [Inject] private IHttpContextAccessor HttpContextAccessor { get; set; } = default!;
@inject NetworkInfoService NetInfo
private string? currentUser; private string? currentUser;
private string? currentIp; private string? currentIp;
private string? macAdresse;
private int? currentFilialId; private int? currentFilialId;
private string? currentFilialName; private string? currentFilialName;
private bool loading = true; private bool loading = true;
@ -64,6 +72,8 @@ else
var ip = HttpContextAccessor.HttpContext?.Connection?.RemoteIpAddress?.ToString(); var ip = HttpContextAccessor.HttpContext?.Connection?.RemoteIpAddress?.ToString();
currentIp = ip; currentIp = ip;
macAdresse = NetInfo.GetMacFromIp(currentIp);
loading = false; loading = false;
} }
} }

View File

@ -13,7 +13,7 @@
<i class="bi bi-box-seam display-5 text-primary mb-2"></i> <i class="bi bi-box-seam display-5 text-primary mb-2"></i>
<h5>Inventur</h5> <h5>Inventur</h5>
<p class="text-muted">Hier kommst du zu allem rund um die Inventur.</p> <p class="text-muted">Hier kommst du zu allem rund um die Inventur.</p>
<a href="/inventur" class="btn btn-primary">Öffnen</a> <a href="/pvk/scanner/inventur" class="btn btn-primary">Öffnen</a>
</div> </div>
</div> </div>
</div> </div>
@ -35,7 +35,7 @@
<i class="bi bi-gear display-5 text-primary mb-2"></i> <i class="bi bi-gear display-5 text-primary mb-2"></i>
<h5>Einstellungen</h5> <h5>Einstellungen</h5>
<p class="text-muted">Hier können Einstellungen wie z.B. die aktuelle IP angezeigt werden.</p> <p class="text-muted">Hier können Einstellungen wie z.B. die aktuelle IP angezeigt werden.</p>
<a href="/einstellungen" class="btn btn-primary">Öffnen</a> <a href="/pvk/scanner/einstellungen" class="btn btn-primary">Öffnen</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -12,7 +12,7 @@
<i class="bi bi-gear display-5 text-primary mb-2"></i> <i class="bi bi-gear display-5 text-primary mb-2"></i>
<h5>Inventur scannen</h5> <h5>Inventur scannen</h5>
<p class="text-muted">Hier kannst du die Artikel in die Inventurerfassung scannen.</p> <p class="text-muted">Hier kannst du die Artikel in die Inventurerfassung scannen.</p>
<a href="/inventur/scannen" class="btn btn-primary">Weiter</a> <a href="/pvk/scanner/inventur/scannen" class="btn btn-primary">Weiter</a>
</div> </div>
</div> </div>
</div> </div>
@ -23,10 +23,20 @@
<i class="bi bi-box-seam display-5 text-primary mb-2"></i> <i class="bi bi-box-seam display-5 text-primary mb-2"></i>
<h5>Inventur - Historie</h5> <h5>Inventur - Historie</h5>
<p class="text-muted">Hier sehen Sie die zuletzt gescannten Artikel und Mengen.</p> <p class="text-muted">Hier sehen Sie die zuletzt gescannten Artikel und Mengen.</p>
<a href="/inventur/historie" class="btn btn-primary">Weiter</a> <a href="/pvk/scanner/inventur/historie" class="btn btn-primary">Weiter</a>
</div> </div>
</div> </div>
</div> </div>
@* <div class="col">
<div class="card h-100 shadow-sm border-0">
<div class="card-body text-center">
<i class="bi bi-box-seam display-5 text-primary mb-2"></i>
<h5>Inventur - Historie - DevExpress</h5>
<p class="text-muted">Hier sehen Sie die zuletzt gescannten Artikel und Mengen.</p>
<a href="/inventur/historie2" class="btn btn-primary">Weiter</a>
</div>
</div>
</div> *@
</div> </div>

Some files were not shown because too many files have changed in this diff Show More