...cleanup
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Model\Model.csproj" />
|
<ProjectReference Include="..\Model\Model.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
+15
-9
@@ -53,10 +53,12 @@ foreach (var file in mdFiles)
|
|||||||
Set = StripWikiLink(yaml.GetValueOrDefault("set")),
|
Set = StripWikiLink(yaml.GetValueOrDefault("set")),
|
||||||
Speed = StripWikiLink(yaml.GetValueOrDefault("speed")),
|
Speed = StripWikiLink(yaml.GetValueOrDefault("speed")),
|
||||||
Archetypes = ParseList(yaml, "archetypes").Select(s => StripWikiLink(s) ?? "").Where(s => s != "").ToList(),
|
Archetypes = ParseList(yaml, "archetypes").Select(s => StripWikiLink(s) ?? "").Where(s => s != "").ToList(),
|
||||||
ImmortalizeTo = yaml.ContainsKey("immortalizeTo") ? ParseListOrScalar(yaml, "immortalizeTo").Select(s => StripWikiLink(s) ?? "").Where(s => s != "").ToList() : null,
|
ImmortalizeTo = yaml.ContainsKey("immortalizeTo")
|
||||||
|
? ParseListOrScalar(yaml, "immortalizeTo").Select(s => StripWikiLink(s) ?? "").Where(s => s != "").ToList()
|
||||||
|
: null,
|
||||||
ImmortalizeFrom = StripWikiLink(yaml.GetValueOrDefault("immortalizeFrom")),
|
ImmortalizeFrom = StripWikiLink(yaml.GetValueOrDefault("immortalizeFrom")),
|
||||||
ImmortalizeWhen = NullIfNa(StripWikiLinks(yaml.GetValueOrDefault("immortalizeWhen"))),
|
ImmortalizeWhen = NullIfNa(StripWikiLinks(yaml.GetValueOrDefault("immortalizeWhen"))),
|
||||||
ImageFile = imageFile,
|
ImageFile = imageFile
|
||||||
};
|
};
|
||||||
|
|
||||||
cards.Add(card);
|
cards.Add(card);
|
||||||
@@ -71,7 +73,7 @@ foreach (var card in cards)
|
|||||||
var src = Path.Combine(docsDir, card.ImageFile);
|
var src = Path.Combine(docsDir, card.ImageFile);
|
||||||
var dst = Path.Combine(cardsDir, card.ImageFile);
|
var dst = Path.Combine(cardsDir, card.ImageFile);
|
||||||
if (File.Exists(src))
|
if (File.Exists(src))
|
||||||
File.Copy(src, dst, overwrite: true);
|
File.Copy(src, dst, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate C# source file
|
// Generate C# source file
|
||||||
@@ -87,7 +89,7 @@ writer.WriteLine("{");
|
|||||||
writer.WriteLine(" public static readonly System.Collections.Generic.List<CardData> Cards =");
|
writer.WriteLine(" public static readonly System.Collections.Generic.List<CardData> Cards =");
|
||||||
writer.WriteLine(" [");
|
writer.WriteLine(" [");
|
||||||
|
|
||||||
for (int i = 0; i < cards.Count; i++)
|
for (var i = 0; i < cards.Count; i++)
|
||||||
{
|
{
|
||||||
var c = cards[i];
|
var c = cards[i];
|
||||||
writer.WriteLine(" new()");
|
writer.WriteLine(" new()");
|
||||||
@@ -138,7 +140,10 @@ static string? StripWikiLinks(string? s)
|
|||||||
return Regex.Replace(s.Trim('"'), @"\[\[([^\]]*)\]\]", "$1").Trim();
|
return Regex.Replace(s.Trim('"'), @"\[\[([^\]]*)\]\]", "$1").Trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
static string? NullIfNa(string? s) => s is "N/A" or null ? null : s.Trim('"');
|
static string? NullIfNa(string? s)
|
||||||
|
{
|
||||||
|
return s is "N/A" or null ? null : s.Trim('"');
|
||||||
|
}
|
||||||
|
|
||||||
static List<string> ParseList(Dictionary<string, string> yaml, string key)
|
static List<string> ParseList(Dictionary<string, string> yaml, string key)
|
||||||
{
|
{
|
||||||
@@ -149,6 +154,7 @@ static List<string> ParseList(Dictionary<string, string> yaml, string key)
|
|||||||
var trimmed = item.TrimStart('-', ' ').Trim(' ', '"');
|
var trimmed = item.TrimStart('-', ' ').Trim(' ', '"');
|
||||||
if (trimmed.Length > 0) result.Add(trimmed);
|
if (trimmed.Length > 0) result.Add(trimmed);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,6 +171,7 @@ static List<string> ParseListOrScalar(Dictionary<string, string> yaml, string ke
|
|||||||
var trimmed = item.TrimStart('-', ' ').Trim(' ', '"');
|
var trimmed = item.TrimStart('-', ' ').Trim(' ', '"');
|
||||||
if (trimmed.Length > 0) result.Add(trimmed);
|
if (trimmed.Length > 0) result.Add(trimmed);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -240,8 +247,7 @@ static string ToLiteral(string? s)
|
|||||||
if (s == null) return "null";
|
if (s == null) return "null";
|
||||||
var sb = new StringBuilder();
|
var sb = new StringBuilder();
|
||||||
sb.Append('"');
|
sb.Append('"');
|
||||||
foreach (char c in s)
|
foreach (var c in s)
|
||||||
{
|
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case '"': sb.Append("\\\""); break;
|
case '"': sb.Append("\\\""); break;
|
||||||
@@ -252,7 +258,7 @@ static string ToLiteral(string? s)
|
|||||||
case '\0': sb.Append("\\0"); break;
|
case '\0': sb.Append("\\0"); break;
|
||||||
default: sb.Append(c); break;
|
default: sb.Append(c); break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
sb.Append('"');
|
sb.Append('"');
|
||||||
return sb.ToString();
|
return sb.ToString();
|
||||||
}
|
}
|
||||||
@@ -26,4 +26,4 @@ public class CardData
|
|||||||
public bool HasImmortalize => ImmortalizeTo is { Count: > 0 };
|
public bool HasImmortalize => ImmortalizeTo is { Count: > 0 };
|
||||||
public bool IsImmortalized => ImmortalizeFrom != null;
|
public bool IsImmortalized => ImmortalizeFrom != null;
|
||||||
public string ImagePath => $"cards/{ImageFile ?? "placeholder.png"}";
|
public string ImagePath => $"cards/{ImageFile ?? "placeholder.png"}";
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
<Router AppAssembly="@typeof(App).Assembly" NotFoundPage="typeof(Pages.NotFound)">
|
@using Web.Pages
|
||||||
|
<Router AppAssembly="@typeof(App).Assembly" NotFoundPage="typeof(NotFound)">
|
||||||
<Found Context="routeData">
|
<Found Context="routeData">
|
||||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
||||||
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
||||||
|
|||||||
@@ -21,20 +21,20 @@ main {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
margin-left: 1.5rem;
|
margin-left: 1.5rem;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
|
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-row ::deep a:first-child {
|
.top-row ::deep a:first-child {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 640.98px) {
|
@media (max-width: 640.98px) {
|
||||||
.top-row {
|
.top-row {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
.top-row {
|
.top-row {
|
||||||
min-height: 3.5rem;
|
min-height: 3.5rem;
|
||||||
background-color: rgba(0,0,0,0.4);
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
@@ -23,30 +23,30 @@
|
|||||||
padding-bottom: 0.5rem;
|
padding-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item:first-of-type {
|
.nav-item:first-of-type {
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item:last-of-type {
|
.nav-item:last-of-type {
|
||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item ::deep a {
|
.nav-item ::deep a {
|
||||||
color: #d7d7d7;
|
color: #d7d7d7;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
line-height: 3rem;
|
line-height: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item ::deep a.active {
|
.nav-item ::deep a.active {
|
||||||
background-color: rgba(255,255,255,0.37);
|
background-color: rgba(255, 255, 255, 0.37);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item ::deep a:hover {
|
.nav-item ::deep a:hover {
|
||||||
background-color: rgba(255,255,255,0.1);
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@page "/agents"
|
@page "/agents"
|
||||||
@using Chrono.Model
|
|
||||||
|
|
||||||
<PageTitle>Agents</PageTitle>
|
<PageTitle>Agents</PageTitle>
|
||||||
|
|
||||||
@@ -29,7 +28,8 @@
|
|||||||
<GridColumn Field="@nameof(CardData.Name)" Title="Card" Width="220px">
|
<GridColumn Field="@nameof(CardData.Name)" Title="Card" Width="220px">
|
||||||
<Template>
|
<Template>
|
||||||
<div class="agent-name-cell">
|
<div class="agent-name-cell">
|
||||||
<img src="@(((CardData)context).ImagePath)" alt="@(((CardData)context).Name)" class="agent-thumb"/>
|
<img src="@(((CardData)context).ImagePath)" alt="@(((CardData)context).Name)"
|
||||||
|
class="agent-thumb"/>
|
||||||
<span>@(((CardData)context).Name)</span>
|
<span>@(((CardData)context).Name)</span>
|
||||||
</div>
|
</div>
|
||||||
</Template>
|
</Template>
|
||||||
@@ -55,4 +55,5 @@
|
|||||||
.ThenBy(c => c.Name)
|
.ThenBy(c => c.Name)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@page "/cards"
|
@page "/cards"
|
||||||
@using Chrono.Model
|
|
||||||
|
|
||||||
<PageTitle>Card Gallery</PageTitle>
|
<PageTitle>Card Gallery</PageTitle>
|
||||||
|
|
||||||
@@ -27,7 +26,8 @@
|
|||||||
<div class="filter-bar">
|
<div class="filter-bar">
|
||||||
<div class="search-wrapper">
|
<div class="search-wrapper">
|
||||||
<i class="bi bi-search search-icon"></i>
|
<i class="bi bi-search search-icon"></i>
|
||||||
<input @bind="search" @bind:event="oninput" class="form-control search-input" placeholder="Search cards by name or description..." />
|
<input @bind="search" @bind:event="oninput" class="form-control search-input"
|
||||||
|
placeholder="Search cards by name or description..."/>
|
||||||
@if (search.Length > 0)
|
@if (search.Length > 0)
|
||||||
{
|
{
|
||||||
<button class="search-clear" @onclick="ClearSearch"><i class="bi bi-x-lg"></i></button>
|
<button class="search-clear" @onclick="ClearSearch"><i class="bi bi-x-lg"></i></button>
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
</select>
|
</select>
|
||||||
<select @bind="costFilter" class="form-select filter-select">
|
<select @bind="costFilter" class="form-select filter-select">
|
||||||
<option value="">All Costs</option>
|
<option value="">All Costs</option>
|
||||||
@for (int i = 0; i <= 12; i++)
|
@for (var i = 0; i <= 12; i++)
|
||||||
{
|
{
|
||||||
<option value="@i">@i</option>
|
<option value="@i">@i</option>
|
||||||
}
|
}
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
@if (filteredCards.Any())
|
@if (filteredCards.Any())
|
||||||
{
|
{
|
||||||
<div class="card-grid">
|
<div class="card-grid">
|
||||||
@{ int idx = 0; }
|
@{ var idx = 0; }
|
||||||
@foreach (var card in filteredCards)
|
@foreach (var card in filteredCards)
|
||||||
{
|
{
|
||||||
<div class="card-cell @(selectedCard == card ? "selected" : "")"
|
<div class="card-cell @(selectedCard == card ? "selected" : "")"
|
||||||
@@ -98,14 +98,15 @@
|
|||||||
<div class="card-image-wrapper">
|
<div class="card-image-wrapper">
|
||||||
<div class="card-shimmer"></div>
|
<div class="card-shimmer"></div>
|
||||||
<img src="@card.ImagePath" alt="@card.Name" loading="lazy"
|
<img src="@card.ImagePath" alt="@card.Name" loading="lazy"
|
||||||
onerror="this.src='data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22200%22 height=%22280%22><rect fill=%22%23222244%22 width=%22200%22 height=%22280%22/><text fill=%22%23686888%22 font-size=%2214%22 x=%22100%22 y=%22140%22 text-anchor=%22middle%22 dominant-baseline=%22middle%22>No Image</text></svg>'" />
|
onerror="this.src='data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22200%22 height=%22280%22><rect fill=%22%23222244%22 width=%22200%22 height=%22280%22/><text fill=%22%23686888%22 font-size=%2214%22 x=%22100%22 y=%22140%22 text-anchor=%22middle%22 dominant-baseline=%22middle%22>No Image</text></svg>'"/>
|
||||||
@if (card.Cost.HasValue)
|
@if (card.Cost.HasValue)
|
||||||
{
|
{
|
||||||
<div class="card-cost-badge">@card.Cost</div>
|
<div class="card-cost-badge">@card.Cost</div>
|
||||||
}
|
}
|
||||||
@if (card.HasImmortalize)
|
@if (card.HasImmortalize)
|
||||||
{
|
{
|
||||||
<div class="card-immortalize-badge" title="Immortalizes"><i class="bi bi-star-fill"></i></div>
|
<div class="card-immortalize-badge" title="Immortalizes"><i class="bi bi-star-fill"></i>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<div class="card-label">
|
<div class="card-label">
|
||||||
@@ -134,13 +135,14 @@
|
|||||||
<button class="detail-close" @onclick="CloseDetail"><i class="bi bi-x-lg"></i></button>
|
<button class="detail-close" @onclick="CloseDetail"><i class="bi bi-x-lg"></i></button>
|
||||||
<div class="detail-layout">
|
<div class="detail-layout">
|
||||||
<div class="detail-image">
|
<div class="detail-image">
|
||||||
<img src="@selectedCard.ImagePath" alt="@selectedCard.Name" />
|
<img src="@selectedCard.ImagePath" alt="@selectedCard.Name"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="detail-info">
|
<div class="detail-info">
|
||||||
<div class="detail-header">
|
<div class="detail-header">
|
||||||
<h2>@selectedCard.Name</h2>
|
<h2>@selectedCard.Name</h2>
|
||||||
<div class="detail-meta">
|
<div class="detail-meta">
|
||||||
<span class="meta-badge category @selectedCard.Category?.ToLowerInvariant()">@selectedCard.Category</span>
|
<span
|
||||||
|
class="meta-badge category @selectedCard.Category?.ToLowerInvariant()">@selectedCard.Category</span>
|
||||||
@if (selectedCard.Cost.HasValue)
|
@if (selectedCard.Cost.HasValue)
|
||||||
{
|
{
|
||||||
<span class="meta-badge cost"><i class="bi bi-lightning-fill"></i> @selectedCard.Cost</span>
|
<span class="meta-badge cost"><i class="bi bi-lightning-fill"></i> @selectedCard.Cost</span>
|
||||||
@@ -249,14 +251,40 @@
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetCategory(string cat) => categoryFilter = categoryFilter == cat ? "" : cat;
|
private void SetCategory(string cat)
|
||||||
private void ClearCategoryFilter() => categoryFilter = "";
|
{
|
||||||
private void ClearFactionFilter() => factionFilter = "";
|
categoryFilter = categoryFilter == cat ? "" : cat;
|
||||||
private void ClearCostFilter() => costFilter = "";
|
}
|
||||||
private void ClearSearch() => search = "";
|
|
||||||
|
|
||||||
private void SelectCard(CardData card) => selectedCard = card;
|
private void ClearCategoryFilter()
|
||||||
private void CloseDetail() => selectedCard = null;
|
{
|
||||||
|
categoryFilter = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ClearFactionFilter()
|
||||||
|
{
|
||||||
|
factionFilter = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ClearCostFilter()
|
||||||
|
{
|
||||||
|
costFilter = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ClearSearch()
|
||||||
|
{
|
||||||
|
search = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SelectCard(CardData card)
|
||||||
|
{
|
||||||
|
selectedCard = card;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CloseDetail()
|
||||||
|
{
|
||||||
|
selectedCard = null;
|
||||||
|
}
|
||||||
|
|
||||||
private void ClearFilters()
|
private void ClearFilters()
|
||||||
{
|
{
|
||||||
@@ -265,4 +293,5 @@
|
|||||||
factionFilter = "";
|
factionFilter = "";
|
||||||
costFilter = "";
|
costFilter = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -269,8 +269,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@keyframes shimmer {
|
@keyframes shimmer {
|
||||||
0% { background-position: -200% 0; }
|
0% {
|
||||||
100% { background-position: 200% 0; }
|
background-position: -200% 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-position: 200% 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-image-wrapper img {
|
.card-image-wrapper img {
|
||||||
@@ -404,8 +408,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@keyframes fade-in {
|
@keyframes fade-in {
|
||||||
from { opacity: 0; }
|
from {
|
||||||
to { opacity: 1; }
|
opacity: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-detail {
|
.card-detail {
|
||||||
@@ -511,7 +519,8 @@
|
|||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
}
|
}
|
||||||
|
|
||||||
.meta-badge.category { }
|
.meta-badge.category {
|
||||||
|
}
|
||||||
|
|
||||||
.meta-badge.category.agent {
|
.meta-badge.category.agent {
|
||||||
background: rgba(79, 195, 247, 0.15);
|
background: rgba(79, 195, 247, 0.15);
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using Microsoft.AspNetCore.Components.Web;
|
using Microsoft.AspNetCore.Components.Web;
|
||||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||||
using Telerik.Blazor;
|
|
||||||
using Web;
|
using Web;
|
||||||
|
|
||||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||||
|
|||||||
@@ -10,27 +10,27 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.9"/>
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.9"/>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.9" PrivateAssets="all"/>
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.9" PrivateAssets="all"/>
|
||||||
<PackageReference Include="Telerik.UI.for.Blazor" Version="14.0.0" />
|
<PackageReference Include="Telerik.UI.for.Blazor" Version="14.0.0"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Model\Model.csproj" />
|
<ProjectReference Include="..\Model\Model.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Label="Generated files">
|
<ItemGroup Label="Generated files">
|
||||||
<Compile Remove="Generated\**\*.cs" />
|
<Compile Remove="Generated\**\*.cs"/>
|
||||||
<Compile Include="Generated\**\*.cs" />
|
<Compile Include="Generated\**\*.cs"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="RunBuild" BeforeTargets="CoreCompile">
|
<Target Name="RunBuild" BeforeTargets="CoreCompile">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_BuildProject>$(MSBuildThisFileDirectory)..\Build\Build.csproj</_BuildProject>
|
<_BuildProject>$(MSBuildThisFileDirectory)..\Build\Build.csproj</_BuildProject>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Message Text="=== Running Build project (card metadata generation) ===" Importance="high" />
|
<Message Text="=== Running Build project (card metadata generation) ===" Importance="high"/>
|
||||||
<Exec Command="dotnet run --project "$(_BuildProject)"" />
|
<Exec Command="dotnet run --project "$(_BuildProject)""/>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Remove="Generated\**\*.cs" />
|
<Compile Remove="Generated\**\*.cs"/>
|
||||||
<Compile Include="Generated\**\*.cs" />
|
<Compile Include="Generated\**\*.cs"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -22,10 +22,22 @@
|
|||||||
scrollbar-color: #2a2a4a transparent;
|
scrollbar-color: #2a2a4a transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar { width: 5px; }
|
::-webkit-scrollbar {
|
||||||
::-webkit-scrollbar-track { background: transparent; }
|
width: 5px;
|
||||||
::-webkit-scrollbar-thumb { background: #2a2a4a; border-radius: 3px; }
|
}
|
||||||
::-webkit-scrollbar-thumb:hover { background: #3a3a5a; }
|
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: #2a2a4a;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #3a3a5a;
|
||||||
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||||
@@ -47,7 +59,9 @@ h1 {
|
|||||||
background-clip: text;
|
background-clip: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, .btn-link { color: var(--accent); }
|
a, .btn-link {
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background: var(--accent);
|
background: var(--accent);
|
||||||
|
|||||||
@@ -2,38 +2,38 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
||||||
<title>Web</title>
|
<title>Web</title>
|
||||||
<base href="/" />
|
<base href="/"/>
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link href="https://fonts.googleapis.com" rel="preconnect"/>
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect"/>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"/>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet"/>
|
||||||
<link rel="preload" id="webassembly" />
|
<link id="webassembly" rel="preload"/>
|
||||||
<link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap.min.css" />
|
<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
||||||
<link rel="stylesheet" href="css/app.css" />
|
<link href="css/app.css" rel="stylesheet"/>
|
||||||
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" />
|
<link href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" rel="stylesheet"/>
|
||||||
<link rel="icon" type="image/png" href="favicon.png" />
|
<link href="favicon.png" rel="icon" type="image/png"/>
|
||||||
<link href="Web.styles.css" rel="stylesheet" />
|
<link href="Web.styles.css" rel="stylesheet"/>
|
||||||
<script type="importmap"></script>
|
<script type="importmap"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<svg class="loading-progress">
|
<svg class="loading-progress">
|
||||||
<circle r="40%" cx="50%" cy="50%" />
|
<circle cx="50%" cy="50%" r="40%"/>
|
||||||
<circle r="40%" cx="50%" cy="50%" />
|
<circle cx="50%" cy="50%" r="40%"/>
|
||||||
</svg>
|
</svg>
|
||||||
<div class="loading-progress-text"></div>
|
<div class="loading-progress-text"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="blazor-error-ui">
|
<div id="blazor-error-ui">
|
||||||
An unhandled error has occurred.
|
An unhandled error has occurred.
|
||||||
<a href="." class="reload">Reload</a>
|
<a class="reload" href=".">Reload</a>
|
||||||
<span class="dismiss">🗙</span>
|
<span class="dismiss">🗙</span>
|
||||||
</div>
|
</div>
|
||||||
<script src="_framework/blazor.webassembly#[.{fingerprint}].js"></script>
|
<script src="_framework/blazor.webassembly#[.{fingerprint}].js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+4416
-3450
File diff suppressed because it is too large
Load Diff
+4417
-3450
File diff suppressed because it is too large
Load Diff
+339
-327
@@ -5,427 +5,435 @@
|
|||||||
*/
|
*/
|
||||||
:root,
|
:root,
|
||||||
[data-bs-theme=light] {
|
[data-bs-theme=light] {
|
||||||
--bs-blue: #0d6efd;
|
--bs-blue: #0d6efd;
|
||||||
--bs-indigo: #6610f2;
|
--bs-indigo: #6610f2;
|
||||||
--bs-purple: #6f42c1;
|
--bs-purple: #6f42c1;
|
||||||
--bs-pink: #d63384;
|
--bs-pink: #d63384;
|
||||||
--bs-red: #dc3545;
|
--bs-red: #dc3545;
|
||||||
--bs-orange: #fd7e14;
|
--bs-orange: #fd7e14;
|
||||||
--bs-yellow: #ffc107;
|
--bs-yellow: #ffc107;
|
||||||
--bs-green: #198754;
|
--bs-green: #198754;
|
||||||
--bs-teal: #20c997;
|
--bs-teal: #20c997;
|
||||||
--bs-cyan: #0dcaf0;
|
--bs-cyan: #0dcaf0;
|
||||||
--bs-black: #000;
|
--bs-black: #000;
|
||||||
--bs-white: #fff;
|
--bs-white: #fff;
|
||||||
--bs-gray: #6c757d;
|
--bs-gray: #6c757d;
|
||||||
--bs-gray-dark: #343a40;
|
--bs-gray-dark: #343a40;
|
||||||
--bs-gray-100: #f8f9fa;
|
--bs-gray-100: #f8f9fa;
|
||||||
--bs-gray-200: #e9ecef;
|
--bs-gray-200: #e9ecef;
|
||||||
--bs-gray-300: #dee2e6;
|
--bs-gray-300: #dee2e6;
|
||||||
--bs-gray-400: #ced4da;
|
--bs-gray-400: #ced4da;
|
||||||
--bs-gray-500: #adb5bd;
|
--bs-gray-500: #adb5bd;
|
||||||
--bs-gray-600: #6c757d;
|
--bs-gray-600: #6c757d;
|
||||||
--bs-gray-700: #495057;
|
--bs-gray-700: #495057;
|
||||||
--bs-gray-800: #343a40;
|
--bs-gray-800: #343a40;
|
||||||
--bs-gray-900: #212529;
|
--bs-gray-900: #212529;
|
||||||
--bs-primary: #0d6efd;
|
--bs-primary: #0d6efd;
|
||||||
--bs-secondary: #6c757d;
|
--bs-secondary: #6c757d;
|
||||||
--bs-success: #198754;
|
--bs-success: #198754;
|
||||||
--bs-info: #0dcaf0;
|
--bs-info: #0dcaf0;
|
||||||
--bs-warning: #ffc107;
|
--bs-warning: #ffc107;
|
||||||
--bs-danger: #dc3545;
|
--bs-danger: #dc3545;
|
||||||
--bs-light: #f8f9fa;
|
--bs-light: #f8f9fa;
|
||||||
--bs-dark: #212529;
|
--bs-dark: #212529;
|
||||||
--bs-primary-rgb: 13, 110, 253;
|
--bs-primary-rgb: 13, 110, 253;
|
||||||
--bs-secondary-rgb: 108, 117, 125;
|
--bs-secondary-rgb: 108, 117, 125;
|
||||||
--bs-success-rgb: 25, 135, 84;
|
--bs-success-rgb: 25, 135, 84;
|
||||||
--bs-info-rgb: 13, 202, 240;
|
--bs-info-rgb: 13, 202, 240;
|
||||||
--bs-warning-rgb: 255, 193, 7;
|
--bs-warning-rgb: 255, 193, 7;
|
||||||
--bs-danger-rgb: 220, 53, 69;
|
--bs-danger-rgb: 220, 53, 69;
|
||||||
--bs-light-rgb: 248, 249, 250;
|
--bs-light-rgb: 248, 249, 250;
|
||||||
--bs-dark-rgb: 33, 37, 41;
|
--bs-dark-rgb: 33, 37, 41;
|
||||||
--bs-primary-text-emphasis: #052c65;
|
--bs-primary-text-emphasis: #052c65;
|
||||||
--bs-secondary-text-emphasis: #2b2f32;
|
--bs-secondary-text-emphasis: #2b2f32;
|
||||||
--bs-success-text-emphasis: #0a3622;
|
--bs-success-text-emphasis: #0a3622;
|
||||||
--bs-info-text-emphasis: #055160;
|
--bs-info-text-emphasis: #055160;
|
||||||
--bs-warning-text-emphasis: #664d03;
|
--bs-warning-text-emphasis: #664d03;
|
||||||
--bs-danger-text-emphasis: #58151c;
|
--bs-danger-text-emphasis: #58151c;
|
||||||
--bs-light-text-emphasis: #495057;
|
--bs-light-text-emphasis: #495057;
|
||||||
--bs-dark-text-emphasis: #495057;
|
--bs-dark-text-emphasis: #495057;
|
||||||
--bs-primary-bg-subtle: #cfe2ff;
|
--bs-primary-bg-subtle: #cfe2ff;
|
||||||
--bs-secondary-bg-subtle: #e2e3e5;
|
--bs-secondary-bg-subtle: #e2e3e5;
|
||||||
--bs-success-bg-subtle: #d1e7dd;
|
--bs-success-bg-subtle: #d1e7dd;
|
||||||
--bs-info-bg-subtle: #cff4fc;
|
--bs-info-bg-subtle: #cff4fc;
|
||||||
--bs-warning-bg-subtle: #fff3cd;
|
--bs-warning-bg-subtle: #fff3cd;
|
||||||
--bs-danger-bg-subtle: #f8d7da;
|
--bs-danger-bg-subtle: #f8d7da;
|
||||||
--bs-light-bg-subtle: #fcfcfd;
|
--bs-light-bg-subtle: #fcfcfd;
|
||||||
--bs-dark-bg-subtle: #ced4da;
|
--bs-dark-bg-subtle: #ced4da;
|
||||||
--bs-primary-border-subtle: #9ec5fe;
|
--bs-primary-border-subtle: #9ec5fe;
|
||||||
--bs-secondary-border-subtle: #c4c8cb;
|
--bs-secondary-border-subtle: #c4c8cb;
|
||||||
--bs-success-border-subtle: #a3cfbb;
|
--bs-success-border-subtle: #a3cfbb;
|
||||||
--bs-info-border-subtle: #9eeaf9;
|
--bs-info-border-subtle: #9eeaf9;
|
||||||
--bs-warning-border-subtle: #ffe69c;
|
--bs-warning-border-subtle: #ffe69c;
|
||||||
--bs-danger-border-subtle: #f1aeb5;
|
--bs-danger-border-subtle: #f1aeb5;
|
||||||
--bs-light-border-subtle: #e9ecef;
|
--bs-light-border-subtle: #e9ecef;
|
||||||
--bs-dark-border-subtle: #adb5bd;
|
--bs-dark-border-subtle: #adb5bd;
|
||||||
--bs-white-rgb: 255, 255, 255;
|
--bs-white-rgb: 255, 255, 255;
|
||||||
--bs-black-rgb: 0, 0, 0;
|
--bs-black-rgb: 0, 0, 0;
|
||||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||||
--bs-body-font-size: 1rem;
|
--bs-body-font-size: 1rem;
|
||||||
--bs-body-font-weight: 400;
|
--bs-body-font-weight: 400;
|
||||||
--bs-body-line-height: 1.5;
|
--bs-body-line-height: 1.5;
|
||||||
--bs-body-color: #212529;
|
--bs-body-color: #212529;
|
||||||
--bs-body-color-rgb: 33, 37, 41;
|
--bs-body-color-rgb: 33, 37, 41;
|
||||||
--bs-body-bg: #fff;
|
--bs-body-bg: #fff;
|
||||||
--bs-body-bg-rgb: 255, 255, 255;
|
--bs-body-bg-rgb: 255, 255, 255;
|
||||||
--bs-emphasis-color: #000;
|
--bs-emphasis-color: #000;
|
||||||
--bs-emphasis-color-rgb: 0, 0, 0;
|
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||||
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||||
--bs-secondary-color-rgb: 33, 37, 41;
|
--bs-secondary-color-rgb: 33, 37, 41;
|
||||||
--bs-secondary-bg: #e9ecef;
|
--bs-secondary-bg: #e9ecef;
|
||||||
--bs-secondary-bg-rgb: 233, 236, 239;
|
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||||
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||||
--bs-tertiary-color-rgb: 33, 37, 41;
|
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||||
--bs-tertiary-bg: #f8f9fa;
|
--bs-tertiary-bg: #f8f9fa;
|
||||||
--bs-tertiary-bg-rgb: 248, 249, 250;
|
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||||
--bs-heading-color: inherit;
|
--bs-heading-color: inherit;
|
||||||
--bs-link-color: #0d6efd;
|
--bs-link-color: #0d6efd;
|
||||||
--bs-link-color-rgb: 13, 110, 253;
|
--bs-link-color-rgb: 13, 110, 253;
|
||||||
--bs-link-decoration: underline;
|
--bs-link-decoration: underline;
|
||||||
--bs-link-hover-color: #0a58ca;
|
--bs-link-hover-color: #0a58ca;
|
||||||
--bs-link-hover-color-rgb: 10, 88, 202;
|
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||||
--bs-code-color: #d63384;
|
--bs-code-color: #d63384;
|
||||||
--bs-highlight-color: #212529;
|
--bs-highlight-color: #212529;
|
||||||
--bs-highlight-bg: #fff3cd;
|
--bs-highlight-bg: #fff3cd;
|
||||||
--bs-border-width: 1px;
|
--bs-border-width: 1px;
|
||||||
--bs-border-style: solid;
|
--bs-border-style: solid;
|
||||||
--bs-border-color: #dee2e6;
|
--bs-border-color: #dee2e6;
|
||||||
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||||
--bs-border-radius: 0.375rem;
|
--bs-border-radius: 0.375rem;
|
||||||
--bs-border-radius-sm: 0.25rem;
|
--bs-border-radius-sm: 0.25rem;
|
||||||
--bs-border-radius-lg: 0.5rem;
|
--bs-border-radius-lg: 0.5rem;
|
||||||
--bs-border-radius-xl: 1rem;
|
--bs-border-radius-xl: 1rem;
|
||||||
--bs-border-radius-xxl: 2rem;
|
--bs-border-radius-xxl: 2rem;
|
||||||
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||||
--bs-border-radius-pill: 50rem;
|
--bs-border-radius-pill: 50rem;
|
||||||
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||||
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||||
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||||
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||||
--bs-focus-ring-width: 0.25rem;
|
--bs-focus-ring-width: 0.25rem;
|
||||||
--bs-focus-ring-opacity: 0.25;
|
--bs-focus-ring-opacity: 0.25;
|
||||||
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||||
--bs-form-valid-color: #198754;
|
--bs-form-valid-color: #198754;
|
||||||
--bs-form-valid-border-color: #198754;
|
--bs-form-valid-border-color: #198754;
|
||||||
--bs-form-invalid-color: #dc3545;
|
--bs-form-invalid-color: #dc3545;
|
||||||
--bs-form-invalid-border-color: #dc3545;
|
--bs-form-invalid-border-color: #dc3545;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-bs-theme=dark] {
|
[data-bs-theme=dark] {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--bs-body-color: #dee2e6;
|
--bs-body-color: #dee2e6;
|
||||||
--bs-body-color-rgb: 222, 226, 230;
|
--bs-body-color-rgb: 222, 226, 230;
|
||||||
--bs-body-bg: #212529;
|
--bs-body-bg: #212529;
|
||||||
--bs-body-bg-rgb: 33, 37, 41;
|
--bs-body-bg-rgb: 33, 37, 41;
|
||||||
--bs-emphasis-color: #fff;
|
--bs-emphasis-color: #fff;
|
||||||
--bs-emphasis-color-rgb: 255, 255, 255;
|
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||||
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||||
--bs-secondary-color-rgb: 222, 226, 230;
|
--bs-secondary-color-rgb: 222, 226, 230;
|
||||||
--bs-secondary-bg: #343a40;
|
--bs-secondary-bg: #343a40;
|
||||||
--bs-secondary-bg-rgb: 52, 58, 64;
|
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||||
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||||
--bs-tertiary-color-rgb: 222, 226, 230;
|
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||||
--bs-tertiary-bg: #2b3035;
|
--bs-tertiary-bg: #2b3035;
|
||||||
--bs-tertiary-bg-rgb: 43, 48, 53;
|
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||||
--bs-primary-text-emphasis: #6ea8fe;
|
--bs-primary-text-emphasis: #6ea8fe;
|
||||||
--bs-secondary-text-emphasis: #a7acb1;
|
--bs-secondary-text-emphasis: #a7acb1;
|
||||||
--bs-success-text-emphasis: #75b798;
|
--bs-success-text-emphasis: #75b798;
|
||||||
--bs-info-text-emphasis: #6edff6;
|
--bs-info-text-emphasis: #6edff6;
|
||||||
--bs-warning-text-emphasis: #ffda6a;
|
--bs-warning-text-emphasis: #ffda6a;
|
||||||
--bs-danger-text-emphasis: #ea868f;
|
--bs-danger-text-emphasis: #ea868f;
|
||||||
--bs-light-text-emphasis: #f8f9fa;
|
--bs-light-text-emphasis: #f8f9fa;
|
||||||
--bs-dark-text-emphasis: #dee2e6;
|
--bs-dark-text-emphasis: #dee2e6;
|
||||||
--bs-primary-bg-subtle: #031633;
|
--bs-primary-bg-subtle: #031633;
|
||||||
--bs-secondary-bg-subtle: #161719;
|
--bs-secondary-bg-subtle: #161719;
|
||||||
--bs-success-bg-subtle: #051b11;
|
--bs-success-bg-subtle: #051b11;
|
||||||
--bs-info-bg-subtle: #032830;
|
--bs-info-bg-subtle: #032830;
|
||||||
--bs-warning-bg-subtle: #332701;
|
--bs-warning-bg-subtle: #332701;
|
||||||
--bs-danger-bg-subtle: #2c0b0e;
|
--bs-danger-bg-subtle: #2c0b0e;
|
||||||
--bs-light-bg-subtle: #343a40;
|
--bs-light-bg-subtle: #343a40;
|
||||||
--bs-dark-bg-subtle: #1a1d20;
|
--bs-dark-bg-subtle: #1a1d20;
|
||||||
--bs-primary-border-subtle: #084298;
|
--bs-primary-border-subtle: #084298;
|
||||||
--bs-secondary-border-subtle: #41464b;
|
--bs-secondary-border-subtle: #41464b;
|
||||||
--bs-success-border-subtle: #0f5132;
|
--bs-success-border-subtle: #0f5132;
|
||||||
--bs-info-border-subtle: #087990;
|
--bs-info-border-subtle: #087990;
|
||||||
--bs-warning-border-subtle: #997404;
|
--bs-warning-border-subtle: #997404;
|
||||||
--bs-danger-border-subtle: #842029;
|
--bs-danger-border-subtle: #842029;
|
||||||
--bs-light-border-subtle: #495057;
|
--bs-light-border-subtle: #495057;
|
||||||
--bs-dark-border-subtle: #343a40;
|
--bs-dark-border-subtle: #343a40;
|
||||||
--bs-heading-color: inherit;
|
--bs-heading-color: inherit;
|
||||||
--bs-link-color: #6ea8fe;
|
--bs-link-color: #6ea8fe;
|
||||||
--bs-link-hover-color: #8bb9fe;
|
--bs-link-hover-color: #8bb9fe;
|
||||||
--bs-link-color-rgb: 110, 168, 254;
|
--bs-link-color-rgb: 110, 168, 254;
|
||||||
--bs-link-hover-color-rgb: 139, 185, 254;
|
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||||
--bs-code-color: #e685b5;
|
--bs-code-color: #e685b5;
|
||||||
--bs-highlight-color: #dee2e6;
|
--bs-highlight-color: #dee2e6;
|
||||||
--bs-highlight-bg: #664d03;
|
--bs-highlight-bg: #664d03;
|
||||||
--bs-border-color: #495057;
|
--bs-border-color: #495057;
|
||||||
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||||
--bs-form-valid-color: #75b798;
|
--bs-form-valid-color: #75b798;
|
||||||
--bs-form-valid-border-color: #75b798;
|
--bs-form-valid-border-color: #75b798;
|
||||||
--bs-form-invalid-color: #ea868f;
|
--bs-form-invalid-color: #ea868f;
|
||||||
--bs-form-invalid-border-color: #ea868f;
|
--bs-form-invalid-border-color: #ea868f;
|
||||||
}
|
}
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*::before,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
@media (prefers-reduced-motion: no-preference) {
|
||||||
:root {
|
:root {
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: var(--bs-body-font-family);
|
font-family: var(--bs-body-font-family);
|
||||||
font-size: var(--bs-body-font-size);
|
font-size: var(--bs-body-font-size);
|
||||||
font-weight: var(--bs-body-font-weight);
|
font-weight: var(--bs-body-font-weight);
|
||||||
line-height: var(--bs-body-line-height);
|
line-height: var(--bs-body-line-height);
|
||||||
color: var(--bs-body-color);
|
color: var(--bs-body-color);
|
||||||
text-align: var(--bs-body-text-align);
|
text-align: var(--bs-body-text-align);
|
||||||
background-color: var(--bs-body-bg);
|
background-color: var(--bs-body-bg);
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin: 1rem 0;
|
margin: 1rem 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-top: var(--bs-border-width) solid;
|
border-top: var(--bs-border-width) solid;
|
||||||
opacity: 0.25;
|
opacity: 0.25;
|
||||||
}
|
}
|
||||||
|
|
||||||
h6, h5, h4, h3, h2, h1 {
|
h6, h5, h4, h3, h2, h1 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
color: var(--bs-heading-color);
|
color: var(--bs-heading-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: calc(1.375rem + 1.5vw);
|
font-size: calc(1.375rem + 1.5vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: calc(1.325rem + 0.9vw);
|
font-size: calc(1.325rem + 0.9vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: calc(1.3rem + 0.6vw);
|
font-size: calc(1.3rem + 0.6vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: calc(1.275rem + 0.3vw);
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h6 {
|
h6 {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr[title] {
|
abbr[title] {
|
||||||
-webkit-text-decoration: underline dotted;
|
-webkit-text-decoration: underline dotted;
|
||||||
text-decoration: underline dotted;
|
text-decoration: underline dotted;
|
||||||
cursor: help;
|
cursor: help;
|
||||||
-webkit-text-decoration-skip-ink: none;
|
-webkit-text-decoration-skip-ink: none;
|
||||||
text-decoration-skip-ink: none;
|
text-decoration-skip-ink: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
address {
|
address {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol,
|
ol,
|
||||||
ul {
|
ul {
|
||||||
padding-left: 2rem;
|
padding-left: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol,
|
ol,
|
||||||
ul,
|
ul,
|
||||||
dl {
|
dl {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol ol,
|
ol ol,
|
||||||
ul ul,
|
ul ul,
|
||||||
ol ul,
|
ol ul,
|
||||||
ul ol {
|
ul ol {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 0 0 1rem;
|
margin: 0 0 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
b,
|
b,
|
||||||
strong {
|
strong {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
mark {
|
mark {
|
||||||
padding: 0.1875em;
|
padding: 0.1875em;
|
||||||
color: var(--bs-highlight-color);
|
color: var(--bs-highlight-color);
|
||||||
background-color: var(--bs-highlight-bg);
|
background-color: var(--bs-highlight-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub,
|
sub,
|
||||||
sup {
|
sup {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub {
|
sub {
|
||||||
bottom: -0.25em;
|
bottom: -0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
top: -0.5em;
|
top: -0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||||
}
|
}
|
||||||
|
|
||||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre,
|
pre,
|
||||||
code,
|
code,
|
||||||
kbd,
|
kbd,
|
||||||
samp {
|
samp {
|
||||||
font-family: var(--bs-font-monospace);
|
font-family: var(--bs-font-monospace);
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: var(--bs-code-color);
|
color: var(--bs-code-color);
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
a > code {
|
a > code {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd {
|
kbd {
|
||||||
padding: 0.1875rem 0.375rem;
|
padding: 0.1875rem 0.375rem;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: var(--bs-body-bg);
|
color: var(--bs-body-bg);
|
||||||
background-color: var(--bs-body-color);
|
background-color: var(--bs-body-color);
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd kbd {
|
kbd kbd {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
figure {
|
figure {
|
||||||
margin: 0 0 1rem;
|
margin: 0 0 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
img,
|
img,
|
||||||
svg {
|
svg {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
caption-side: bottom;
|
caption-side: bottom;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
caption {
|
caption {
|
||||||
padding-top: 0.5rem;
|
padding-top: 0.5rem;
|
||||||
padding-bottom: 0.5rem;
|
padding-bottom: 0.5rem;
|
||||||
color: var(--bs-secondary-color);
|
color: var(--bs-secondary-color);
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
text-align: inherit;
|
text-align: inherit;
|
||||||
text-align: -webkit-match-parent;
|
text-align: -webkit-match-parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead,
|
thead,
|
||||||
@@ -434,21 +442,21 @@ tfoot,
|
|||||||
tr,
|
tr,
|
||||||
td,
|
td,
|
||||||
th {
|
th {
|
||||||
border-color: inherit;
|
border-color: inherit;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:focus:not(:focus-visible) {
|
button:focus:not(:focus-visible) {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input,
|
input,
|
||||||
@@ -456,76 +464,80 @@ button,
|
|||||||
select,
|
select,
|
||||||
optgroup,
|
optgroup,
|
||||||
textarea {
|
textarea {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
button,
|
button,
|
||||||
select {
|
select {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
[role=button] {
|
[role=button] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
word-wrap: normal;
|
word-wrap: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
select:disabled {
|
select:disabled {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
button,
|
button,
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=submit] {
|
[type=submit] {
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:not(:disabled),
|
button:not(:disabled),
|
||||||
[type=button]:not(:disabled),
|
[type=button]:not(:disabled),
|
||||||
[type=reset]:not(:disabled),
|
[type=reset]:not(:disabled),
|
||||||
[type=submit]:not(:disabled) {
|
[type=submit]:not(:disabled) {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-moz-focus-inner {
|
::-moz-focus-inner {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
legend {
|
legend {
|
||||||
float: left;
|
float: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-size: calc(1.275rem + 0.3vw);
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
legend {
|
legend {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
legend + * {
|
legend + * {
|
||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-datetime-edit-fields-wrapper,
|
::-webkit-datetime-edit-fields-wrapper,
|
||||||
@@ -535,16 +547,16 @@ legend + * {
|
|||||||
::-webkit-datetime-edit-day-field,
|
::-webkit-datetime-edit-day-field,
|
||||||
::-webkit-datetime-edit-month-field,
|
::-webkit-datetime-edit-month-field,
|
||||||
::-webkit-datetime-edit-year-field {
|
::-webkit-datetime-edit-year-field {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-inner-spin-button {
|
::-webkit-inner-spin-button {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
[type=search] {
|
[type=search] {
|
||||||
-webkit-appearance: textfield;
|
-webkit-appearance: textfield;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* rtl:raw:
|
/* rtl:raw:
|
||||||
@@ -556,42 +568,42 @@ legend + * {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
::-webkit-search-decoration {
|
::-webkit-search-decoration {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-color-swatch-wrapper {
|
::-webkit-color-swatch-wrapper {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-file-upload-button {
|
::-webkit-file-upload-button {
|
||||||
font: inherit;
|
font: inherit;
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
|
||||||
::file-selector-button {
|
::file-selector-button {
|
||||||
font: inherit;
|
font: inherit;
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
|
||||||
output {
|
output {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
iframe {
|
iframe {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
summary {
|
summary {
|
||||||
display: list-item;
|
display: list-item;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
progress {
|
progress {
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
[hidden] {
|
[hidden] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
||||||
+342
-328
@@ -5,427 +5,435 @@
|
|||||||
*/
|
*/
|
||||||
:root,
|
:root,
|
||||||
[data-bs-theme=light] {
|
[data-bs-theme=light] {
|
||||||
--bs-blue: #0d6efd;
|
--bs-blue: #0d6efd;
|
||||||
--bs-indigo: #6610f2;
|
--bs-indigo: #6610f2;
|
||||||
--bs-purple: #6f42c1;
|
--bs-purple: #6f42c1;
|
||||||
--bs-pink: #d63384;
|
--bs-pink: #d63384;
|
||||||
--bs-red: #dc3545;
|
--bs-red: #dc3545;
|
||||||
--bs-orange: #fd7e14;
|
--bs-orange: #fd7e14;
|
||||||
--bs-yellow: #ffc107;
|
--bs-yellow: #ffc107;
|
||||||
--bs-green: #198754;
|
--bs-green: #198754;
|
||||||
--bs-teal: #20c997;
|
--bs-teal: #20c997;
|
||||||
--bs-cyan: #0dcaf0;
|
--bs-cyan: #0dcaf0;
|
||||||
--bs-black: #000;
|
--bs-black: #000;
|
||||||
--bs-white: #fff;
|
--bs-white: #fff;
|
||||||
--bs-gray: #6c757d;
|
--bs-gray: #6c757d;
|
||||||
--bs-gray-dark: #343a40;
|
--bs-gray-dark: #343a40;
|
||||||
--bs-gray-100: #f8f9fa;
|
--bs-gray-100: #f8f9fa;
|
||||||
--bs-gray-200: #e9ecef;
|
--bs-gray-200: #e9ecef;
|
||||||
--bs-gray-300: #dee2e6;
|
--bs-gray-300: #dee2e6;
|
||||||
--bs-gray-400: #ced4da;
|
--bs-gray-400: #ced4da;
|
||||||
--bs-gray-500: #adb5bd;
|
--bs-gray-500: #adb5bd;
|
||||||
--bs-gray-600: #6c757d;
|
--bs-gray-600: #6c757d;
|
||||||
--bs-gray-700: #495057;
|
--bs-gray-700: #495057;
|
||||||
--bs-gray-800: #343a40;
|
--bs-gray-800: #343a40;
|
||||||
--bs-gray-900: #212529;
|
--bs-gray-900: #212529;
|
||||||
--bs-primary: #0d6efd;
|
--bs-primary: #0d6efd;
|
||||||
--bs-secondary: #6c757d;
|
--bs-secondary: #6c757d;
|
||||||
--bs-success: #198754;
|
--bs-success: #198754;
|
||||||
--bs-info: #0dcaf0;
|
--bs-info: #0dcaf0;
|
||||||
--bs-warning: #ffc107;
|
--bs-warning: #ffc107;
|
||||||
--bs-danger: #dc3545;
|
--bs-danger: #dc3545;
|
||||||
--bs-light: #f8f9fa;
|
--bs-light: #f8f9fa;
|
||||||
--bs-dark: #212529;
|
--bs-dark: #212529;
|
||||||
--bs-primary-rgb: 13, 110, 253;
|
--bs-primary-rgb: 13, 110, 253;
|
||||||
--bs-secondary-rgb: 108, 117, 125;
|
--bs-secondary-rgb: 108, 117, 125;
|
||||||
--bs-success-rgb: 25, 135, 84;
|
--bs-success-rgb: 25, 135, 84;
|
||||||
--bs-info-rgb: 13, 202, 240;
|
--bs-info-rgb: 13, 202, 240;
|
||||||
--bs-warning-rgb: 255, 193, 7;
|
--bs-warning-rgb: 255, 193, 7;
|
||||||
--bs-danger-rgb: 220, 53, 69;
|
--bs-danger-rgb: 220, 53, 69;
|
||||||
--bs-light-rgb: 248, 249, 250;
|
--bs-light-rgb: 248, 249, 250;
|
||||||
--bs-dark-rgb: 33, 37, 41;
|
--bs-dark-rgb: 33, 37, 41;
|
||||||
--bs-primary-text-emphasis: #052c65;
|
--bs-primary-text-emphasis: #052c65;
|
||||||
--bs-secondary-text-emphasis: #2b2f32;
|
--bs-secondary-text-emphasis: #2b2f32;
|
||||||
--bs-success-text-emphasis: #0a3622;
|
--bs-success-text-emphasis: #0a3622;
|
||||||
--bs-info-text-emphasis: #055160;
|
--bs-info-text-emphasis: #055160;
|
||||||
--bs-warning-text-emphasis: #664d03;
|
--bs-warning-text-emphasis: #664d03;
|
||||||
--bs-danger-text-emphasis: #58151c;
|
--bs-danger-text-emphasis: #58151c;
|
||||||
--bs-light-text-emphasis: #495057;
|
--bs-light-text-emphasis: #495057;
|
||||||
--bs-dark-text-emphasis: #495057;
|
--bs-dark-text-emphasis: #495057;
|
||||||
--bs-primary-bg-subtle: #cfe2ff;
|
--bs-primary-bg-subtle: #cfe2ff;
|
||||||
--bs-secondary-bg-subtle: #e2e3e5;
|
--bs-secondary-bg-subtle: #e2e3e5;
|
||||||
--bs-success-bg-subtle: #d1e7dd;
|
--bs-success-bg-subtle: #d1e7dd;
|
||||||
--bs-info-bg-subtle: #cff4fc;
|
--bs-info-bg-subtle: #cff4fc;
|
||||||
--bs-warning-bg-subtle: #fff3cd;
|
--bs-warning-bg-subtle: #fff3cd;
|
||||||
--bs-danger-bg-subtle: #f8d7da;
|
--bs-danger-bg-subtle: #f8d7da;
|
||||||
--bs-light-bg-subtle: #fcfcfd;
|
--bs-light-bg-subtle: #fcfcfd;
|
||||||
--bs-dark-bg-subtle: #ced4da;
|
--bs-dark-bg-subtle: #ced4da;
|
||||||
--bs-primary-border-subtle: #9ec5fe;
|
--bs-primary-border-subtle: #9ec5fe;
|
||||||
--bs-secondary-border-subtle: #c4c8cb;
|
--bs-secondary-border-subtle: #c4c8cb;
|
||||||
--bs-success-border-subtle: #a3cfbb;
|
--bs-success-border-subtle: #a3cfbb;
|
||||||
--bs-info-border-subtle: #9eeaf9;
|
--bs-info-border-subtle: #9eeaf9;
|
||||||
--bs-warning-border-subtle: #ffe69c;
|
--bs-warning-border-subtle: #ffe69c;
|
||||||
--bs-danger-border-subtle: #f1aeb5;
|
--bs-danger-border-subtle: #f1aeb5;
|
||||||
--bs-light-border-subtle: #e9ecef;
|
--bs-light-border-subtle: #e9ecef;
|
||||||
--bs-dark-border-subtle: #adb5bd;
|
--bs-dark-border-subtle: #adb5bd;
|
||||||
--bs-white-rgb: 255, 255, 255;
|
--bs-white-rgb: 255, 255, 255;
|
||||||
--bs-black-rgb: 0, 0, 0;
|
--bs-black-rgb: 0, 0, 0;
|
||||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||||
--bs-body-font-size: 1rem;
|
--bs-body-font-size: 1rem;
|
||||||
--bs-body-font-weight: 400;
|
--bs-body-font-weight: 400;
|
||||||
--bs-body-line-height: 1.5;
|
--bs-body-line-height: 1.5;
|
||||||
--bs-body-color: #212529;
|
--bs-body-color: #212529;
|
||||||
--bs-body-color-rgb: 33, 37, 41;
|
--bs-body-color-rgb: 33, 37, 41;
|
||||||
--bs-body-bg: #fff;
|
--bs-body-bg: #fff;
|
||||||
--bs-body-bg-rgb: 255, 255, 255;
|
--bs-body-bg-rgb: 255, 255, 255;
|
||||||
--bs-emphasis-color: #000;
|
--bs-emphasis-color: #000;
|
||||||
--bs-emphasis-color-rgb: 0, 0, 0;
|
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||||
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||||
--bs-secondary-color-rgb: 33, 37, 41;
|
--bs-secondary-color-rgb: 33, 37, 41;
|
||||||
--bs-secondary-bg: #e9ecef;
|
--bs-secondary-bg: #e9ecef;
|
||||||
--bs-secondary-bg-rgb: 233, 236, 239;
|
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||||
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||||
--bs-tertiary-color-rgb: 33, 37, 41;
|
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||||
--bs-tertiary-bg: #f8f9fa;
|
--bs-tertiary-bg: #f8f9fa;
|
||||||
--bs-tertiary-bg-rgb: 248, 249, 250;
|
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||||
--bs-heading-color: inherit;
|
--bs-heading-color: inherit;
|
||||||
--bs-link-color: #0d6efd;
|
--bs-link-color: #0d6efd;
|
||||||
--bs-link-color-rgb: 13, 110, 253;
|
--bs-link-color-rgb: 13, 110, 253;
|
||||||
--bs-link-decoration: underline;
|
--bs-link-decoration: underline;
|
||||||
--bs-link-hover-color: #0a58ca;
|
--bs-link-hover-color: #0a58ca;
|
||||||
--bs-link-hover-color-rgb: 10, 88, 202;
|
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||||
--bs-code-color: #d63384;
|
--bs-code-color: #d63384;
|
||||||
--bs-highlight-color: #212529;
|
--bs-highlight-color: #212529;
|
||||||
--bs-highlight-bg: #fff3cd;
|
--bs-highlight-bg: #fff3cd;
|
||||||
--bs-border-width: 1px;
|
--bs-border-width: 1px;
|
||||||
--bs-border-style: solid;
|
--bs-border-style: solid;
|
||||||
--bs-border-color: #dee2e6;
|
--bs-border-color: #dee2e6;
|
||||||
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||||
--bs-border-radius: 0.375rem;
|
--bs-border-radius: 0.375rem;
|
||||||
--bs-border-radius-sm: 0.25rem;
|
--bs-border-radius-sm: 0.25rem;
|
||||||
--bs-border-radius-lg: 0.5rem;
|
--bs-border-radius-lg: 0.5rem;
|
||||||
--bs-border-radius-xl: 1rem;
|
--bs-border-radius-xl: 1rem;
|
||||||
--bs-border-radius-xxl: 2rem;
|
--bs-border-radius-xxl: 2rem;
|
||||||
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||||
--bs-border-radius-pill: 50rem;
|
--bs-border-radius-pill: 50rem;
|
||||||
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||||
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||||
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||||
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||||
--bs-focus-ring-width: 0.25rem;
|
--bs-focus-ring-width: 0.25rem;
|
||||||
--bs-focus-ring-opacity: 0.25;
|
--bs-focus-ring-opacity: 0.25;
|
||||||
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||||
--bs-form-valid-color: #198754;
|
--bs-form-valid-color: #198754;
|
||||||
--bs-form-valid-border-color: #198754;
|
--bs-form-valid-border-color: #198754;
|
||||||
--bs-form-invalid-color: #dc3545;
|
--bs-form-invalid-color: #dc3545;
|
||||||
--bs-form-invalid-border-color: #dc3545;
|
--bs-form-invalid-border-color: #dc3545;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-bs-theme=dark] {
|
[data-bs-theme=dark] {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--bs-body-color: #dee2e6;
|
--bs-body-color: #dee2e6;
|
||||||
--bs-body-color-rgb: 222, 226, 230;
|
--bs-body-color-rgb: 222, 226, 230;
|
||||||
--bs-body-bg: #212529;
|
--bs-body-bg: #212529;
|
||||||
--bs-body-bg-rgb: 33, 37, 41;
|
--bs-body-bg-rgb: 33, 37, 41;
|
||||||
--bs-emphasis-color: #fff;
|
--bs-emphasis-color: #fff;
|
||||||
--bs-emphasis-color-rgb: 255, 255, 255;
|
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||||
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||||
--bs-secondary-color-rgb: 222, 226, 230;
|
--bs-secondary-color-rgb: 222, 226, 230;
|
||||||
--bs-secondary-bg: #343a40;
|
--bs-secondary-bg: #343a40;
|
||||||
--bs-secondary-bg-rgb: 52, 58, 64;
|
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||||
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||||
--bs-tertiary-color-rgb: 222, 226, 230;
|
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||||
--bs-tertiary-bg: #2b3035;
|
--bs-tertiary-bg: #2b3035;
|
||||||
--bs-tertiary-bg-rgb: 43, 48, 53;
|
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||||
--bs-primary-text-emphasis: #6ea8fe;
|
--bs-primary-text-emphasis: #6ea8fe;
|
||||||
--bs-secondary-text-emphasis: #a7acb1;
|
--bs-secondary-text-emphasis: #a7acb1;
|
||||||
--bs-success-text-emphasis: #75b798;
|
--bs-success-text-emphasis: #75b798;
|
||||||
--bs-info-text-emphasis: #6edff6;
|
--bs-info-text-emphasis: #6edff6;
|
||||||
--bs-warning-text-emphasis: #ffda6a;
|
--bs-warning-text-emphasis: #ffda6a;
|
||||||
--bs-danger-text-emphasis: #ea868f;
|
--bs-danger-text-emphasis: #ea868f;
|
||||||
--bs-light-text-emphasis: #f8f9fa;
|
--bs-light-text-emphasis: #f8f9fa;
|
||||||
--bs-dark-text-emphasis: #dee2e6;
|
--bs-dark-text-emphasis: #dee2e6;
|
||||||
--bs-primary-bg-subtle: #031633;
|
--bs-primary-bg-subtle: #031633;
|
||||||
--bs-secondary-bg-subtle: #161719;
|
--bs-secondary-bg-subtle: #161719;
|
||||||
--bs-success-bg-subtle: #051b11;
|
--bs-success-bg-subtle: #051b11;
|
||||||
--bs-info-bg-subtle: #032830;
|
--bs-info-bg-subtle: #032830;
|
||||||
--bs-warning-bg-subtle: #332701;
|
--bs-warning-bg-subtle: #332701;
|
||||||
--bs-danger-bg-subtle: #2c0b0e;
|
--bs-danger-bg-subtle: #2c0b0e;
|
||||||
--bs-light-bg-subtle: #343a40;
|
--bs-light-bg-subtle: #343a40;
|
||||||
--bs-dark-bg-subtle: #1a1d20;
|
--bs-dark-bg-subtle: #1a1d20;
|
||||||
--bs-primary-border-subtle: #084298;
|
--bs-primary-border-subtle: #084298;
|
||||||
--bs-secondary-border-subtle: #41464b;
|
--bs-secondary-border-subtle: #41464b;
|
||||||
--bs-success-border-subtle: #0f5132;
|
--bs-success-border-subtle: #0f5132;
|
||||||
--bs-info-border-subtle: #087990;
|
--bs-info-border-subtle: #087990;
|
||||||
--bs-warning-border-subtle: #997404;
|
--bs-warning-border-subtle: #997404;
|
||||||
--bs-danger-border-subtle: #842029;
|
--bs-danger-border-subtle: #842029;
|
||||||
--bs-light-border-subtle: #495057;
|
--bs-light-border-subtle: #495057;
|
||||||
--bs-dark-border-subtle: #343a40;
|
--bs-dark-border-subtle: #343a40;
|
||||||
--bs-heading-color: inherit;
|
--bs-heading-color: inherit;
|
||||||
--bs-link-color: #6ea8fe;
|
--bs-link-color: #6ea8fe;
|
||||||
--bs-link-hover-color: #8bb9fe;
|
--bs-link-hover-color: #8bb9fe;
|
||||||
--bs-link-color-rgb: 110, 168, 254;
|
--bs-link-color-rgb: 110, 168, 254;
|
||||||
--bs-link-hover-color-rgb: 139, 185, 254;
|
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||||
--bs-code-color: #e685b5;
|
--bs-code-color: #e685b5;
|
||||||
--bs-highlight-color: #dee2e6;
|
--bs-highlight-color: #dee2e6;
|
||||||
--bs-highlight-bg: #664d03;
|
--bs-highlight-bg: #664d03;
|
||||||
--bs-border-color: #495057;
|
--bs-border-color: #495057;
|
||||||
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||||
--bs-form-valid-color: #75b798;
|
--bs-form-valid-color: #75b798;
|
||||||
--bs-form-valid-border-color: #75b798;
|
--bs-form-valid-border-color: #75b798;
|
||||||
--bs-form-invalid-color: #ea868f;
|
--bs-form-invalid-color: #ea868f;
|
||||||
--bs-form-invalid-border-color: #ea868f;
|
--bs-form-invalid-border-color: #ea868f;
|
||||||
}
|
}
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*::before,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
@media (prefers-reduced-motion: no-preference) {
|
||||||
:root {
|
:root {
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: var(--bs-body-font-family);
|
font-family: var(--bs-body-font-family);
|
||||||
font-size: var(--bs-body-font-size);
|
font-size: var(--bs-body-font-size);
|
||||||
font-weight: var(--bs-body-font-weight);
|
font-weight: var(--bs-body-font-weight);
|
||||||
line-height: var(--bs-body-line-height);
|
line-height: var(--bs-body-line-height);
|
||||||
color: var(--bs-body-color);
|
color: var(--bs-body-color);
|
||||||
text-align: var(--bs-body-text-align);
|
text-align: var(--bs-body-text-align);
|
||||||
background-color: var(--bs-body-bg);
|
background-color: var(--bs-body-bg);
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin: 1rem 0;
|
margin: 1rem 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-top: var(--bs-border-width) solid;
|
border-top: var(--bs-border-width) solid;
|
||||||
opacity: 0.25;
|
opacity: 0.25;
|
||||||
}
|
}
|
||||||
|
|
||||||
h6, h5, h4, h3, h2, h1 {
|
h6, h5, h4, h3, h2, h1 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
color: var(--bs-heading-color);
|
color: var(--bs-heading-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: calc(1.375rem + 1.5vw);
|
font-size: calc(1.375rem + 1.5vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: calc(1.325rem + 0.9vw);
|
font-size: calc(1.325rem + 0.9vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: calc(1.3rem + 0.6vw);
|
font-size: calc(1.3rem + 0.6vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: calc(1.275rem + 0.3vw);
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h6 {
|
h6 {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr[title] {
|
abbr[title] {
|
||||||
-webkit-text-decoration: underline dotted;
|
-webkit-text-decoration: underline dotted;
|
||||||
text-decoration: underline dotted;
|
text-decoration: underline dotted;
|
||||||
cursor: help;
|
cursor: help;
|
||||||
-webkit-text-decoration-skip-ink: none;
|
-webkit-text-decoration-skip-ink: none;
|
||||||
text-decoration-skip-ink: none;
|
text-decoration-skip-ink: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
address {
|
address {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol,
|
ol,
|
||||||
ul {
|
ul {
|
||||||
padding-right: 2rem;
|
padding-right: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol,
|
ol,
|
||||||
ul,
|
ul,
|
||||||
dl {
|
dl {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol ol,
|
ol ol,
|
||||||
ul ul,
|
ul ul,
|
||||||
ol ul,
|
ol ul,
|
||||||
ul ol {
|
ul ol {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 0 0 1rem;
|
margin: 0 0 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
b,
|
b,
|
||||||
strong {
|
strong {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
mark {
|
mark {
|
||||||
padding: 0.1875em;
|
padding: 0.1875em;
|
||||||
color: var(--bs-highlight-color);
|
color: var(--bs-highlight-color);
|
||||||
background-color: var(--bs-highlight-bg);
|
background-color: var(--bs-highlight-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub,
|
sub,
|
||||||
sup {
|
sup {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub {
|
sub {
|
||||||
bottom: -0.25em;
|
bottom: -0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
top: -0.5em;
|
top: -0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||||
}
|
}
|
||||||
|
|
||||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre,
|
pre,
|
||||||
code,
|
code,
|
||||||
kbd,
|
kbd,
|
||||||
samp {
|
samp {
|
||||||
font-family: var(--bs-font-monospace);
|
font-family: var(--bs-font-monospace);
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: var(--bs-code-color);
|
color: var(--bs-code-color);
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
a > code {
|
a > code {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd {
|
kbd {
|
||||||
padding: 0.1875rem 0.375rem;
|
padding: 0.1875rem 0.375rem;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: var(--bs-body-bg);
|
color: var(--bs-body-bg);
|
||||||
background-color: var(--bs-body-color);
|
background-color: var(--bs-body-color);
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd kbd {
|
kbd kbd {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
figure {
|
figure {
|
||||||
margin: 0 0 1rem;
|
margin: 0 0 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
img,
|
img,
|
||||||
svg {
|
svg {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
caption-side: bottom;
|
caption-side: bottom;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
caption {
|
caption {
|
||||||
padding-top: 0.5rem;
|
padding-top: 0.5rem;
|
||||||
padding-bottom: 0.5rem;
|
padding-bottom: 0.5rem;
|
||||||
color: var(--bs-secondary-color);
|
color: var(--bs-secondary-color);
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
text-align: inherit;
|
text-align: inherit;
|
||||||
text-align: -webkit-match-parent;
|
text-align: -webkit-match-parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead,
|
thead,
|
||||||
@@ -434,21 +442,21 @@ tfoot,
|
|||||||
tr,
|
tr,
|
||||||
td,
|
td,
|
||||||
th {
|
th {
|
||||||
border-color: inherit;
|
border-color: inherit;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:focus:not(:focus-visible) {
|
button:focus:not(:focus-visible) {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input,
|
input,
|
||||||
@@ -456,76 +464,80 @@ button,
|
|||||||
select,
|
select,
|
||||||
optgroup,
|
optgroup,
|
||||||
textarea {
|
textarea {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
button,
|
button,
|
||||||
select {
|
select {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
[role=button] {
|
[role=button] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
word-wrap: normal;
|
word-wrap: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
select:disabled {
|
select:disabled {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
button,
|
button,
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=submit] {
|
[type=submit] {
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:not(:disabled),
|
button:not(:disabled),
|
||||||
[type=button]:not(:disabled),
|
[type=button]:not(:disabled),
|
||||||
[type=reset]:not(:disabled),
|
[type=reset]:not(:disabled),
|
||||||
[type=submit]:not(:disabled) {
|
[type=submit]:not(:disabled) {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-moz-focus-inner {
|
::-moz-focus-inner {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
legend {
|
legend {
|
||||||
float: right;
|
float: right;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-size: calc(1.275rem + 0.3vw);
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) {
|
@media (min-width: 1200px) {
|
||||||
legend {
|
legend {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
legend + * {
|
legend + * {
|
||||||
clear: right;
|
clear: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-datetime-edit-fields-wrapper,
|
::-webkit-datetime-edit-fields-wrapper,
|
||||||
@@ -535,60 +547,62 @@ legend + * {
|
|||||||
::-webkit-datetime-edit-day-field,
|
::-webkit-datetime-edit-day-field,
|
||||||
::-webkit-datetime-edit-month-field,
|
::-webkit-datetime-edit-month-field,
|
||||||
::-webkit-datetime-edit-year-field {
|
::-webkit-datetime-edit-year-field {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-inner-spin-button {
|
::-webkit-inner-spin-button {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
[type=search] {
|
[type=search] {
|
||||||
-webkit-appearance: textfield;
|
-webkit-appearance: textfield;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
[type="tel"],
|
[type="tel"],
|
||||||
[type="url"],
|
[type="url"],
|
||||||
[type="email"],
|
[type="email"],
|
||||||
[type="number"] {
|
[type="number"] {
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-search-decoration {
|
::-webkit-search-decoration {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-color-swatch-wrapper {
|
::-webkit-color-swatch-wrapper {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-file-upload-button {
|
::-webkit-file-upload-button {
|
||||||
font: inherit;
|
font: inherit;
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
|
||||||
::file-selector-button {
|
::file-selector-button {
|
||||||
font: inherit;
|
font: inherit;
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
|
|
||||||
output {
|
output {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
iframe {
|
iframe {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
summary {
|
summary {
|
||||||
display: list-item;
|
display: list-item;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
progress {
|
progress {
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
[hidden] {
|
[hidden] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
|
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
|
||||||
+4740
-3832
File diff suppressed because it is too large
Load Diff
+4740
-3830
File diff suppressed because it is too large
Load Diff
+10002
-8338
File diff suppressed because it is too large
Load Diff
+10012
-8337
File diff suppressed because it is too large
Load Diff
+6340
-6144
File diff suppressed because it is too large
Load Diff
+3423
-3234
File diff suppressed because it is too large
Load Diff
+4606
-4416
File diff suppressed because it is too large
Load Diff
+12435
-130
File diff suppressed because one or more lines are too long
@@ -18,11 +18,12 @@ cards:
|
|||||||
- "[[Holder of the Instruments]]"
|
- "[[Holder of the Instruments]]"
|
||||||
divers:
|
divers:
|
||||||
---
|
---
|
||||||
|
|
||||||
First game, lost to Sungrace Splintergleam. Had slow lethal, but they had burn.
|
First game, lost to Sungrace Splintergleam. Had slow lethal, but they had burn.
|
||||||
|
|
||||||
My hand had lots of cards.
|
My hand had lots of cards.
|
||||||
|
|
||||||
Won the mirror. Still had a lot of cards in hand.
|
Won the mirror. Still had a lot of cards in hand.
|
||||||
|
|
||||||
Won against Silence Sungrace.
|
Won against Silence Sungrace.
|
||||||
|
|
||||||
|
|||||||
@@ -14,4 +14,5 @@ archetypes:
|
|||||||
- N/A
|
- N/A
|
||||||
imageLink: "[[Master of Ceremonies.png]]"
|
imageLink: "[[Master of Ceremonies.png]]"
|
||||||
---
|
---
|
||||||
|
|
||||||
![[Master of Ceremonies.png]]
|
![[Master of Ceremonies.png]]
|
||||||
|
|||||||
Reference in New Issue
Block a user