Update/logos (#2435)

* update logos to startos icon

* readme too

* fix spelling
This commit is contained in:
Matt Hill
2023-10-03 10:53:29 -06:00
committed by GitHub
parent dc26d5c0c8
commit 500369ab2b
17 changed files with 15 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
<div align="center"> <div align="center">
<img src="frontend/projects/shared/assets/img/icon_pwa.png" alt="StartOS Logo" width="16%" /> <img src="frontend/projects/shared/assets/img/icon.png" alt="StartOS Logo" width="16%" />
<h1 style="margin-top: 0;">StartOS</h1> <h1 style="margin-top: 0;">StartOS</h1>
<a href="https://github.com/Start9Labs/start-os/releases"> <a href="https://github.com/Start9Labs/start-os/releases">
<img src="https://img.shields.io/github/v/tag/Start9Labs/start-os?color=success" /> <img src="https://img.shields.io/github/v/tag/Start9Labs/start-os?color=success" />
@@ -65,7 +65,7 @@ There are multiple ways to contribute: work directly on StartOS, package a servi
To report security issues, please email our security team - security@start9.com. To report security issues, please email our security team - security@start9.com.
## 🌎 Marketplace ## 🌎 Marketplace
There are dozens of service available for StartOS, and new ones are being added all the time. Check out the full list of available services [here](https://marketplace.start9.com/marketplace). To read more about the Marketplace ecosystem, check out this [blog post](https://blog.start9.com/start9-marketplace-strategy/) There are dozens of services available for StartOS, and new ones are being added all the time. Check out the full list of available services [here](https://marketplace.start9.com/marketplace). To read more about the Marketplace ecosystem, check out this [blog post](https://blog.start9.com/start9-marketplace-strategy/)
## 🖥️ User Interface Screenshots ## 🖥️ User Interface Screenshots

View File

@@ -2,8 +2,8 @@
<ion-grid> <ion-grid>
<ion-row> <ion-row>
<ion-col class="ion-text-center"> <ion-col class="ion-text-center">
<div style="padding-bottom: 32px"> <div style="padding: 64px 0 32px 0">
<img src="assets/img/logo.png" style="max-width: 240px" /> <img src="assets/img/icon.png" style="max-width: 100px" />
</div> </div>
<ion-card color="dark"> <ion-card color="dark">

View File

@@ -4,13 +4,13 @@
<ion-col class="ion-text-center"> <ion-col class="ion-text-center">
<div style="padding-bottom: 32px"> <div style="padding-bottom: 32px">
<img <img
src="assets/img/logo.png" src="assets/img/icon.png"
class="pb-1" class="pb-1"
style="max-width: 220px" style="max-width: 100px"
/> />
</div> </div>
<ion-card color="dark"> <ion-card color="dark">
<ion-card-header> <ion-card-header style="padding-bottom: 0">
<ion-button <ion-button
*ngIf="swiper?.activeIndex === 1" *ngIf="swiper?.activeIndex === 1"
class="back-button" class="back-button"

View File

@@ -11,7 +11,3 @@
text-align: center; text-align: center;
justify-content: center; justify-content: center;
} }
ion-card-title {
font-variant-caps: all-small-caps;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -1,10 +1,5 @@
<a class="logo ion-padding" routerLink="/home"> <a class="logo" routerLink="/home">
<img <img alt="StartOS" src="assets/img/icon.png" />
alt="Start9"
src="assets/img/{{
(theme$ | async) === 'Dark' ? 'logo' : 'logo_dark'
}}.png"
/>
</a> </a>
<ion-item-group class="menu"> <ion-item-group class="menu">
<ion-menu-toggle *ngFor="let page of pages" auto-hide="false"> <ion-menu-toggle *ngFor="let page of pages" auto-hide="false">

View File

@@ -4,8 +4,9 @@
.logo { .logo {
display: block; display: block;
width: 60%; width: 36%;
margin: 0 auto; margin: 0 auto;
padding: 16px 16px 0 16px;
} }
.menu { .menu {

View File

@@ -60,9 +60,7 @@
<ion-toolbar></ion-toolbar> <ion-toolbar></ion-toolbar>
<!-- images --> <!-- images -->
<img src="assets/img/logo.png" />
<img src="assets/img/icon.png" /> <img src="assets/img/icon.png" />
<img src="assets/img/icon_transparent.png" />
<img src="assets/img/community-store.png" /> <img src="assets/img/community-store.png" />
<img src="assets/img/icons/snek.png" /> <img src="assets/img/icons/snek.png" />
<img src="assets/img/icons/wifi-1.png" /> <img src="assets/img/icons/wifi-1.png" />

View File

@@ -31,7 +31,7 @@ export class GetIconPipe implements PipeTransform {
const { start9, community } = this.config.marketplace const { start9, community } = this.config.marketplace
if (sameUrl(url, start9)) { if (sameUrl(url, start9)) {
return 'assets/img/icon_transparent.png' return 'assets/img/icon.png'
} else if (sameUrl(url, community)) { } else if (sameUrl(url, community)) {
return 'assets/img/community-store.png' return 'assets/img/community-store.png'
} }

View File

@@ -1,5 +1,5 @@
<ion-grid class="grid-wiz"> <ion-grid class="grid-wiz">
<img width="60px" height="60px" src="/assets/img/icon_transparent.png" /> <img width="60px" height="60px" src="/assets/img/icon.png" alt="StartOS" />
<ion-row> <ion-row>
<ion-col class="ion-text-center"> <ion-col class="ion-text-center">
<ion-icon name="lock-closed-outline" class="wiz-icon"></ion-icon> <ion-icon name="lock-closed-outline" class="wiz-icon"></ion-icon>

View File

@@ -23,8 +23,6 @@
<ion-grid class="grid"> <ion-grid class="grid">
<ion-row class="row"> <ion-row class="row">
<ion-col> <ion-col>
<img src="assets/img/logo.png" alt="Start9" class="logo" />
<ion-card class="card"> <ion-card class="card">
<ion-card-header> <ion-card-header>
<ion-card-title class="title">StartOS Login</ion-card-title> <ion-card-title class="title">StartOS Login</ion-card-title>

View File

@@ -9,7 +9,7 @@
.title { .title {
margin: 24px 0 16px; margin: 24px 0 16px;
color: #e0e0e0; color: #e0e0e0;
text-transform: uppercase; font-size: 1.8rem;
} }
.grid { .grid {
@@ -23,11 +23,6 @@
text-align: center; text-align: center;
} }
.logo {
max-width: 240px;
padding-bottom: 16px;
}
.error { .error {
display: block; display: block;
text-align: left; text-align: left;

View File

@@ -9,7 +9,7 @@
"id": "/?version=0344", "id": "/?version=0344",
"icons": [ "icons": [
{ {
"src": "assets/img/icon_pwa.png", "src": "assets/img/icon.png",
"sizes": "256x256", "sizes": "256x256",
"type": "image/png", "type": "image/png",
"purpose": "any" "purpose": "any"