assets added for swag

This commit is contained in:
edbrz9 2022-12-29 14:53:31 +01:00
parent 19c66b8365
commit 838af601f0
6 changed files with 47 additions and 3 deletions

View File

@ -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%;
}

View File

@ -0,0 +1,13 @@
let vm = new Vue({
el: '#root',
data: {
url: '',
lang: '',
output: ''
},
methods: {
check() {
return "check"
}
}
}).$mount('#root')

6
proj/y2t/assets/js/vue.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
<title>Y2T</title>
<meta charset="utf-8">
<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>
<body>

View File

@ -4,7 +4,7 @@
<title>Y2T</title>
<meta charset="utf-8">
<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>
<body>

View File

@ -61,5 +61,5 @@ if currentString:
blocks = len(sList)
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])