From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。
---
HotelPms.Client.Blazor/wwwroot/css/site.css | 143 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 143 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Client.Blazor/wwwroot/css/site.css b/HotelPms.Client.Blazor/wwwroot/css/site.css
new file mode 100644
index 0000000..2a6ea05
--- /dev/null
+++ b/HotelPms.Client.Blazor/wwwroot/css/site.css
@@ -0,0 +1,143 @@
+@import url('https://fonts.googleapis.com/css2?family=Reggae+One&display=swap');
+
+.loading-logo svg {
+ width: 1000px;
+ height: 350px;
+ margin: auto;
+}
+
+.loading-logo svg text {
+ text-transform: uppercase;
+ animation: stroke 5s infinite alternate;
+ letter-spacing: 10px;
+ font-family: 'Reggae One', CenturyGothic, "AppleGothic", sans-serif;
+ font-size: 100px;
+}
+
+@keyframes stroke {
+ 0% {
+ fill: rgba(255, 0, 0, 0);
+ stroke: rgba(0, 255, 0, 1);
+ stroke-dashoffset: 25%;
+ stroke-dasharray: 0 50%;
+ stroke-width: 1;
+ }
+
+ 50% {
+ fill: rgba(255, 0, 0, 0);
+ stroke: rgba(0, 255, 0, 1);
+ stroke-width: 2;
+ }
+
+ 70% {
+ fill: rgba(255, 0, 0, 0);
+ stroke: rgba(0, 255, 0, 1);
+ stroke-width: 3;
+ }
+
+ 90%, 100% {
+ fill: rgba(255, 0, 0, 1);
+ stroke: rgba(0, 255, 0, 0);
+ stroke-dashoffset: -25%;
+ stroke-dasharray: 50% 0;
+ stroke-width: 0;
+ }
+}
+
+#globalLoadingSpinnerBg, #globalLoadingSpinner, #globalLoadingSpinner0 {
+ display: none;
+}
+
+.loading #globalLoadingSpinnerBg {
+ display: block;
+ opacity: .5;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 9998;
+ width: 100vw;
+ height: 100vh;
+ background-color: #000;
+ transition: opacity .15s linear;
+ box-sizing: border-box;
+}
+
+.loading-logo #globalLoadingSpinner0 {
+ display: flex;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: 9999;
+}
+
+.loading #globalLoadingSpinner {
+ display: flex;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 9999;
+ width: 100%;
+ height: 100%;
+ overflow-x: hidden;
+ overflow-y: auto;
+ outline: 0;
+ transition: opacity .15s linear;
+ box-sizing: border-box;
+}
+
+.global-text-primary {
+ color: #0d6efd !important;
+}
+
+.global-text-secondary {
+ color: #6c757d !important;
+}
+
+.global-text-success {
+ color: #198754 !important;
+}
+
+.global-text-danger {
+ color: #dc3545 !important;
+}
+
+.global-text-warning {
+ color: #ffc107 !important;
+}
+
+.global-text-light {
+ color: #0dcaf0 !important;
+}
+
+.global-text-info {
+ color: #f8f9fa !important;
+}
+
+.global-text-dark {
+ color: #212529 !important;
+}
+
+.global-spinner-grow {
+ display: inline-block;
+ width: 2rem;
+ height: 2rem;
+ vertical-align: -.125em;
+ background-color: currentColor;
+ border-radius: 50%;
+ opacity: 0;
+ -webkit-animation: .75s linear infinite spinner-grow;
+ animation: .75s linear infinite spinner-grow;
+ box-sizing: border-box;
+}
+
+@keyframes spinner-grow {
+ 0% {
+ transform: scale(0);
+ }
+
+ 50% {
+ opacity: 1;
+ transform: none;
+ }
+}
--
Gitblit v1.10.0