[-] Remove background for now

This commit is contained in:
Hykilpikonna
2020-01-23 20:35:16 -05:00
parent 4d0c48619d
commit 9d8a797c54
2 changed files with 26 additions and 2 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 904 KiB

+26 -2
View File
@@ -1,8 +1,8 @@
<template> <template>
<div id="info"> <div id="info">
<div id="top"> <div id="top">
<span id="title">Veracross Analyzer for SJP</span> <div id="title">Veracross Analyzer for SJP</div>
<span id="subtitle">Know your grades better.</span> <div id="subtitle">Know your grades better.</div>
</div> </div>
</div> </div>
</template> </template>
@@ -18,5 +18,29 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
#top
{
padding: 40vh 0;
background-image: url("../assets/info/background-min.jpg");
// Center and scale the image nicely
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: right;
#title
{
font-size: 30px;
margin-right: 10vw;
color: white;
}
#subtitle
{
margin-right: 10vw;
color: white;
}
}
</style> </style>