assets added for swag
This commit is contained in:
parent
19c66b8365
commit
838af601f0
|
@ -0,0 +1,25 @@
|
||||||
|
html {
|
||||||
|
min-height: 100vh;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
/* white to black linear noise gradient spanning from top to bottom */
|
||||||
|
background-image:
|
||||||
|
url('https://ed.brz9.dev/assets/svg/noise.svg'),
|
||||||
|
linear-gradient(to bottom right, #2e3551, #0d747d);
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face{
|
||||||
|
font-family: inter;
|
||||||
|
src: url("https://ed.brz9.dev/assets/fonts/inter/Inter-Regular.woff");
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: inter;
|
||||||
|
color: #e9d2d2;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
let vm = new Vue({
|
||||||
|
el: '#root',
|
||||||
|
data: {
|
||||||
|
url: '',
|
||||||
|
lang: '',
|
||||||
|
output: ''
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
check() {
|
||||||
|
return "check"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).$mount('#root')
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
<title>Y2T</title>
|
<title>Y2T</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="assets/css/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<title>Y2T</title>
|
<title>Y2T</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="assets/css/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
|
@ -61,5 +61,5 @@ if currentString:
|
||||||
blocks = len(sList)
|
blocks = len(sList)
|
||||||
|
|
||||||
for i in range(blocks):
|
for i in range(blocks):
|
||||||
print('This is part '+ str(i+1) +'/'+ str(blocks) + " of the transcript of a video named: "+ title + ": \n" + sList[i])
|
print('This is part '+ str(i+1) +'/'+ str(blocks) + ' of the transcript of a video named: "' + title + '": \n' + sList[i])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue