Installing ng-matero

This commit is contained in:
2023-01-09 16:39:23 +01:00
parent 2425ecbd3b
commit 399b52a272
209 changed files with 15574 additions and 174 deletions

View File

@@ -7,10 +7,73 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="assets/fonts/Material_Icons.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style type="text/css">
.global-loader {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
background-color: #fff;
opacity: 1;
transition: opacity .5s ease-in-out;
}
.global-loader-fade-in {
opacity: 0;
}
.global-loader-hidden {
display: none;
}
.global-loader h1 {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-weight: normal;
font-size: 24px;
letter-spacing: .04rem;
white-space: pre;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
background-image:
repeating-linear-gradient(
to right,
#f44336,
#9c27b0,
#3f51b5,
#03a9f4,
#009688,
#8bc34a,
#ffeb3b,
#ff9800
);
background-size: 750% auto;
background-position: 0 100%;
animation: gradient 20s infinite;
animation-fill-mode: forwards;
animation-timing-function: linear;
}
@keyframes gradient {
0% {
background-position: 0 0;
}
100% {
background-position: -750% 0;
}
}
</style>
</head>
<body class="mat-typography">
<body>
<app-root></app-root>
<div id="globalLoader" class="global-loader"><h1>LOADING</h1></div>
</body>
</html>