Skip to content

Commit

Permalink
Images + About text
Browse files Browse the repository at this point in the history
  • Loading branch information
NewtonGauss committed May 11, 2022
1 parent b8d9e41 commit 685f7b0
Show file tree
Hide file tree
Showing 10 changed files with 334 additions and 6 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
<meta name="apple-mobile-web-app-capable" content="yes">
<title></title>
<script src="dist/openmct.js"></script>
<link rel="icon" type="image/png" href="dist/favicons/favicon-96x96.png" sizes="96x96" type="image/x-icon">
<link rel="icon" type="image/png" href="dist/favicons/favicon-32x32.png" sizes="32x32" type="image/x-icon">
<link rel="icon" type="image/png" href="dist/favicons/favicon-16x16.png" sizes="16x16" type="image/x-icon">
<link rel="icon" type="image/png" href="dist/favicons/favicon-96x96.ico" sizes="96x96" type="image/x-icon">
<link rel="icon" type="image/png" href="dist/favicons/favicon-32x32.ico" sizes="32x32" type="image/x-icon">
<link rel="icon" type="image/png" href="dist/favicons/favicon-16x16.ico" sizes="16x16" type="image/x-icon">
<style type="text/css">
@keyframes splash-spinner {
0% {
Expand Down
Binary file added src/images/favicons/bugsat1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/favicons/favicon-16x16.ico
Binary file not shown.
Binary file added src/images/favicons/favicon-32x32.ico
Binary file not shown.
Binary file added src/images/favicons/favicon-96x96.ico
Binary file not shown.
23 changes: 23 additions & 0 deletions src/styles/_about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,29 @@
}
}

// El logo de UNLaM sobre el splash del About.
.c-unlam-image {
&:before,
&:after {
background-position: right;
background-repeat: no-repeat;
position: absolute;
background-size: contain;
content: '';
$w: 5%;
$m: 10px;
background-image: url('../ui/layout/assets/images/unlam-about-logo.png');
top: $m;
right: $m;
bottom: auto;
left: auto;
height: auto;
width: $w * 2;
padding-bottom: $w;
padding-top: $w;
}
}

.c-about {
&--splash {
// Large initial image after click on app logo with text beneath
Expand Down
7 changes: 6 additions & 1 deletion src/ui/layout/AboutDialog.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<template>
<!-- eslint-disable vue/no-v-html -->
<div class="c-about c-about--splash">
<div class="c-about__image c-splash-image"></div>
<div class="c-about__image c-splash-image">
<div class="c-unlam-image"></div>
</div>
<div class="c-about__text s-text">
<div
v-if="branding.aboutHtml"
Expand All @@ -13,6 +15,9 @@
Open MCT
</h1>
<div class="l-description s-description">
<p>Backend developed by <a target="_blank" href="https://gidsa.unlam.edu.ar">GIDSA research group</a> at Universidad Nacional de La Matanza.</p>
<p>Raw data downloaded from <a href="https://satnogs.org">SATNOGS NETWORK</a> and other sources.</p>
<p>Frontend based on NASA Open MCT.</p>
<p>Open MCT, Copyright &copy; 2014-2022, United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All rights reserved.</p>
<p>
Open MCT is licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at <a
Expand Down
5 changes: 3 additions & 2 deletions src/ui/layout/app-logo.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// El logo que se encuentra arriba a la derecha
.l-shell__app-logo {
cursor: pointer;
width: 70px;
height: 20px;
background: url('assets/images/logo-openmct.svg') center no-repeat;
}
background: url('assets/images/unlam-logo.svg') center no-repeat;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
299 changes: 299 additions & 0 deletions src/ui/layout/assets/images/unlam-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 685f7b0

Please sign in to comment.