-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,820 changed files
with
339,339 additions
and
2,451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
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.
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap'); | ||
|
||
|
||
.loading-indicator { | ||
|
||
background-image: url(/assets/xcule_icon.png); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: 33px; | ||
|
||
|
||
} | ||
|
||
.tv-spinner, div[role="progressbar"] { | ||
border-top-color: #298678; | ||
border-left-color: #298678; | ||
|
||
border-right: unset; | ||
border-top: unset; | ||
|
||
left: calc(50% - 0.53em); | ||
top: calc(50% - 0.50em); | ||
|
||
font-size: 95px !important; | ||
border-width: 5px; | ||
|
||
} | ||
|
||
.navbar-replay-icon-container { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
cursor: pointer; | ||
} | ||
|
||
.navbar-replay-icon-container.active { | ||
color: #298678; | ||
} | ||
|
||
.navbar-replay-icon-container .replay-icon { | ||
height: 23px; | ||
width: 26px; | ||
} | ||
|
||
.overlay { | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
right: 0; | ||
background-color: rgba(250, 250, 250, 0.65); | ||
/* background-color: rgba(41, 134, 120, 0.65); */ | ||
pointer-events: none; /* Allows mouse events to pass through the overlay */ | ||
/* border-left: 1px dotted #298678; */ | ||
} | ||
|
||
#XCULE-USER { | ||
font-family: 'TrebuchetMS-Bold', 'Trebuchet MS', 'Roboto', sans-serif; | ||
font-size: 20px; | ||
font-weight: 500; | ||
letter-spacing: 0.6px; | ||
fill: #000000; | ||
color: #000000; | ||
} |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | ||
|
||
<link rel="manifest" href="/site.webmanifest"> | ||
<script src="%PUBLIC_URL%/datafeeds/udf/dist/bundle.js"></script> | ||
<title>Charting Library React Demo</title> | ||
<script type="module"> | ||
// Import the functions you need from the SDKs you need | ||
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-app.js"; | ||
import { getAnalytics } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-analytics.js"; | ||
// TODO: Add SDKs for Firebase products that you want to use | ||
// https://firebase.google.com/docs/web/setup#available-libraries | ||
|
||
// Your web app's Firebase configuration | ||
// For Firebase JS SDK v7.20.0 and later, measurementId is optional | ||
const firebaseConfig = { | ||
apiKey: "AIzaSyCZC3_tW0qz3EXnrj0MR2MUwoM8to3aLzA", | ||
authDomain: "xculewebapp.firebaseapp.com", | ||
projectId: "xculewebapp", | ||
storageBucket: "xculewebapp.appspot.com", | ||
messagingSenderId: "493422102147", | ||
appId: "1:493422102147:web:eb4207636ff0bc6ef0bdb6", | ||
measurementId: "G-L5B96PEBZ4" | ||
}; | ||
|
||
// Initialize Firebase | ||
const app = initializeApp(firebaseConfig); | ||
const analytics = getAnalytics(app); | ||
</script> | ||
<title>Xcule</title> | ||
<!-- <style> | ||
@font-face { | ||
font-family: 'trebuc'; | ||
src: url('fonts/trebuc.ttf') format('truetype'); | ||
} | ||
</style> --> | ||
<!-- <link rel="stylesheet" href="/styles.css"> --> | ||
</head> | ||
<body> | ||
<noscript> | ||
You need to enable JavaScript to run this app. | ||
</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
This HTML file is a template. | ||
If you open it directly in the browser, you will see an empty page. | ||
</body> | ||
|
||
You can add webfonts, meta tags, or analytics to this file. | ||
The build step will place the bundled scripts into the <body> tag. | ||
|
||
To begin the development, run `npm start`. | ||
To create a production bundle, use `npm run build`. | ||
--> | ||
</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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.