ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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;
    }
}