- Splash screens
This commit is contained in:
BIN
src/assets/imgs/launch-screen-1125x2436.png
Normal file
BIN
src/assets/imgs/launch-screen-1125x2436.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
src/assets/imgs/launch-screen-1242x2208.png
Normal file
BIN
src/assets/imgs/launch-screen-1242x2208.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
src/assets/imgs/launch-screen-640x1136.png
Normal file
BIN
src/assets/imgs/launch-screen-640x1136.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
BIN
src/assets/imgs/launch-screen-750x1334.png
Normal file
BIN
src/assets/imgs/launch-screen-750x1334.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
BIN
src/assets/imgs/splash.png
Normal file
BIN
src/assets/imgs/splash.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 158 KiB |
@@ -13,6 +13,10 @@
|
||||
|
||||
<!-- add to homescreen for ios -->
|
||||
<link rel="apple-touch-icon" href="assets/imgs/logo.png">
|
||||
<link rel="apple-touch-startup-image" sizes="640x1136" href="assets/imgs/launch-screen-640x1136.png">
|
||||
<link rel="apple-touch-startup-image" sizes="750x1334" href="assets/imgs/launch-screen-750x1334.png">
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="assets/imgs/launch-screen-1125x2436.png">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="assets/imgs/launch-screen-1242x2208.png">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-title" content="Urge">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<ion-grid no-padding>
|
||||
<ion-row align-items-stretch>
|
||||
<ion-col col-4 class="profile" *ngFor="let current of profiles" (tap)="profileTapped($event, current)" [style.backgroundImage]="getBackgroundThumbnail(current.details.pic)">
|
||||
<span class="username">{{current.details.name}}</span>
|
||||
<span class="username" [ngClass]="{ 'online': (current.messages?.length > 0) }">{{current.details.name}}</span>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
</ion-grid>
|
||||
|
||||
@@ -12,24 +12,35 @@ page-grid {
|
||||
.username {
|
||||
bottom: 0.25rem;
|
||||
box-sizing: border-box;
|
||||
color: #acacac;
|
||||
display: inline-block;
|
||||
left: 0.25rem;
|
||||
left: 0.5rem;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
right: 0.25rem;
|
||||
text-overflow: ellipsis;
|
||||
text-shadow: rgba(0, 0, 0, 0.75);
|
||||
text-shadow: rgba(0, 0, 0, 1);
|
||||
white-space: nowrap;
|
||||
|
||||
&::before {
|
||||
border: 2px solid #acacac;
|
||||
border: 0.125rem solid #acacac;
|
||||
border-radius: 1rem;
|
||||
color: #acacac;
|
||||
bottom: 0.125rem;
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 1rem;
|
||||
margin-right: 0.25rem;
|
||||
vertical-align: top;
|
||||
width: 1rem;
|
||||
height: 0.8rem;
|
||||
margin-right: 0.5rem;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
width: 0.8rem;
|
||||
}
|
||||
|
||||
&.online {
|
||||
|
||||
&::before {
|
||||
background-color: #00FF00;
|
||||
border-color: #00FF00;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user