Skip to content

Commit

Permalink
Deploy 32a2b214eddd070f8db0e6b9f71fc21a663e7419 (Mon Sep 11 07:09:38 …
Browse files Browse the repository at this point in the history
…UTC 2023)
  • Loading branch information
web-flow committed Sep 11, 2023
1 parent b581720 commit 48178cf
Show file tree
Hide file tree
Showing 22 changed files with 1,022 additions and 0 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/* roboto-flex-cyrillic-ext-wght-normal */
@font-face {
font-family: 'Roboto Flex Variable';
font-style: normal;
font-display: swap;
font-weight: 100 1000;
src: url(./fonts/roboto-flex-cyrillic-ext-wght-normal.woff2) format('woff2-variations');
unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* roboto-flex-cyrillic-wght-normal */
@font-face {
font-family: 'Roboto Flex Variable';
font-style: normal;
font-display: swap;
font-weight: 100 1000;
src: url(./fonts/roboto-flex-cyrillic-wght-normal.woff2) format('woff2-variations');
unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* roboto-flex-greek-wght-normal */
@font-face {
font-family: 'Roboto Flex Variable';
font-style: normal;
font-display: swap;
font-weight: 100 1000;
src: url(./fonts/roboto-flex-greek-wght-normal.woff2) format('woff2-variations');
unicode-range: U+0370-03FF;
}

/* roboto-flex-vietnamese-wght-normal */
@font-face {
font-family: 'Roboto Flex Variable';
font-style: normal;
font-display: swap;
font-weight: 100 1000;
src: url(./fonts/roboto-flex-vietnamese-wght-normal.woff2) format('woff2-variations');
unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* roboto-flex-latin-ext-wght-normal */
@font-face {
font-family: 'Roboto Flex Variable';
font-style: normal;
font-display: swap;
font-weight: 100 1000;
src: url(./fonts/roboto-flex-latin-ext-wght-normal.woff2) format('woff2-variations');
unicode-range: U+0100-02AF,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* roboto-flex-latin-wght-normal */
@font-face {
font-family: 'Roboto Flex Variable';
font-style: normal;
font-display: swap;
font-weight: 100 1000;
src: url(./fonts/roboto-flex-latin-wght-normal.woff2) format('woff2-variations');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="description" content="Web-based recording studio for Opencast"/><title>Opencast Studio</title><script>// This is used to determine the color mode as soon as possible to avoid a
// flash of white (the loading indicator) for a user using dark mode.
const scheme = window.localStorage.getItem("colorScheme");
document.documentElement.dataset.colorScheme = (scheme === "dark" || scheme === "light")
? scheme
: (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");</script><style>/* ----- Define colors and other color-scheme dependent things ----- */
/* Light mode */
html[data-color-scheme="light"], html:not([data-color-scheme]) {
--color-neutral05: #fefefe;
--color-neutral10: #f3f3f3;
--color-neutral15: #e8e8e8;
--color-neutral20: #dddddd;
--color-neutral25: #d1d1d1;
--color-neutral30: #c1c1c1;
--color-neutral40: #a3a3a3;
--color-neutral50: #777777;
--color-neutral60: #575757;
--color-neutral70: #404040;
--color-neutral80: #2a2a2a;
--color-neutral90: #181818;
--color-danger0: #feedeb;
--color-danger1: #ffd2cd;
--color-danger2: #feaba1;
--color-danger4: #c22a2c;
--color-danger5: #880e11;
--color-accent9: #044a81;
--color-accent8: #215D99;
--color-accent7: #3073B8;
--color-accent6: #3E8AD8;
--color-accent5: #4DA1F7;
--color-accent4: #71B4F9;

--shadow-color: rgba(0, 0, 0, 0.1);
color-scheme: light;
}

/* Dark mode */
html[data-color-scheme="dark"] {
--color-neutral05: #171717;
--color-neutral10: #1e1e1e;
--color-neutral15: #262626;
--color-neutral20: #2e2e2e;
--color-neutral25: #373737;
--color-neutral30: #3f3f3f;
--color-neutral40: #4d4d4d;
--color-neutral50: #676767;
--color-neutral60: #868686;
--color-neutral70: #969696;
--color-neutral80: #a6a6a6;
--color-neutral90: #c4c4c4;
--color-danger0: #361314;
--color-danger1: #462522;
--color-danger2: #712f2a;
--color-danger4: #dd554b;
--color-danger5: #f87965;
--color-accent9: #85ace3;
--color-accent8: #7da4db;
--color-accent7: #588ccd;
--color-accent6: #1f72ba;
--color-accent5: #1c619e;
--color-accent4: #195483;

--shadow-color: rgba(0, 0, 0, 0.3);
color-scheme: dark;
}


/* ----- Some global styles ----- */
html, body {
margin: 0;
padding: 0;
background-color: var(--color-neutral10);
color: var(--color-neutral90);
}


/* ----- Styles for the initial loading indicator ----- */
@keyframes loading-rotation {
0% { transform: rotate(0); }
100% { transform: rotate(360deg); }
}
.loading-indicator {
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
display: flex;
}
.loading-indicator > svg {
max-width: 90px;
max-height: 90px;
width: 30vw;
height: 30vh;
animation: 2s linear infinite none loading-rotation;
}
.loading-indicator > svg > circle {
fill: none;
stroke: var(--color-neutral5);
stroke-width: 10;
stroke-dasharray: 167; /* 2/3 of circumference */
stroke-linecap: round;
}</style><link rel="stylesheet" href="./font.css"><link rel="icon" href="/2023-09-11_07-08-46-elan-ev-6143091163-dependabot-npm_and_yarn-typescript-5-2-2/favicon.ico"><script defer="defer" src="/2023-09-11_07-08-46-elan-ev-6143091163-dependabot-npm_and_yarn-typescript-5-2-2/main.bundle.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div class="loading-indicator"><svg viewbox="0 0 100 100"><circle cx="50" cy="50" r="40"/></svg></div></div></body></html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/**
* @license React
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @license React
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.13.1
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[upload]
workflowId = 'fast'
Loading

0 comments on commit 48178cf

Please sign in to comment.