mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-30 17:59:02 +00:00
2182 lines
40 KiB
CSS
2182 lines
40 KiB
CSS
@import 'tailwindcss';
|
|
@import 'konsta/vue/theme.css';
|
|
|
|
.sim-picker-backdrop {
|
|
position: fixed;
|
|
z-index: 1000;
|
|
inset: 0;
|
|
display: grid;
|
|
place-items: center;
|
|
background: rgb(0 0 0 / 45%);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.sim-picker {
|
|
position: relative;
|
|
width: min(58vh, 90vw);
|
|
max-height: 46vh;
|
|
overflow: clip;
|
|
padding: 2.2vh;
|
|
border: 0.1vh solid rgb(255 255 255 / 12%);
|
|
border-radius: 0.9vh;
|
|
background: #050505;
|
|
box-shadow: 0 2.4vh 8vh rgb(0 0 0 / 55%);
|
|
color: #fff;
|
|
}
|
|
|
|
.sim-picker__glow {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
background: #1dd1ce;
|
|
filter: blur(12vh);
|
|
opacity: 0.45;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sim-picker__glow--top {
|
|
width: 18vh;
|
|
height: 18vh;
|
|
top: -12vh;
|
|
right: -8vh;
|
|
}
|
|
|
|
.sim-picker__glow--bottom {
|
|
width: 32vh;
|
|
height: 16vh;
|
|
right: 10vh;
|
|
bottom: -16vh;
|
|
}
|
|
|
|
.sim-picker__header,
|
|
.sim-picker__card,
|
|
.sim-picker__confirmation {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.sim-picker__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 2vh;
|
|
margin-bottom: 1.6vh;
|
|
}
|
|
|
|
.sim-picker__header h1,
|
|
.sim-picker__confirmation h2 {
|
|
margin: 0;
|
|
color: #1dd1ce;
|
|
font-size: 2vh;
|
|
}
|
|
|
|
.sim-picker__header p,
|
|
.sim-picker__confirmation p {
|
|
margin: 0.45vh 0 0;
|
|
color: #9ca3af;
|
|
font-size: 1.15vh;
|
|
}
|
|
|
|
.sim-picker__close {
|
|
display: grid;
|
|
place-items: center;
|
|
width: 2.8vh;
|
|
height: 2.8vh;
|
|
border: 0;
|
|
border-radius: 0.35vh;
|
|
background: #1dd1ce;
|
|
color: #050505;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sim-picker__close svg {
|
|
width: 1.6vh;
|
|
height: 1.6vh;
|
|
}
|
|
|
|
.sim-picker__cards {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 1vh;
|
|
max-height: 34vh;
|
|
overflow: auto;
|
|
}
|
|
|
|
.sim-picker__card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1vh;
|
|
min-width: 0;
|
|
padding: 1.2vh;
|
|
border: 0.1vh solid rgb(143 143 143 / 37%);
|
|
border-radius: 0.6vh;
|
|
background: #050505;
|
|
color: #fff;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sim-picker__card:hover {
|
|
border-color: rgb(255 255 255 / 50%);
|
|
}
|
|
|
|
.sim-picker__phone-icon,
|
|
.sim-picker__card > svg:last-child {
|
|
flex: 0 0 auto;
|
|
width: 2.2vh;
|
|
height: 2.2vh;
|
|
}
|
|
|
|
.sim-picker__phone-icon {
|
|
color: #1dd1ce;
|
|
}
|
|
|
|
.sim-picker__details {
|
|
display: flex;
|
|
flex: 1;
|
|
min-width: 0;
|
|
flex-direction: column;
|
|
gap: 0.25vh;
|
|
}
|
|
|
|
.sim-picker__details strong {
|
|
overflow: hidden;
|
|
font-size: 1.2vh;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.sim-picker__details small {
|
|
color: #9ca3af;
|
|
font-size: 0.95vh;
|
|
}
|
|
|
|
.sim-picker__confirmation {
|
|
padding: 2vh 0 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.sim-picker__confirmation > div {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1vh;
|
|
margin-top: 2vh;
|
|
}
|
|
|
|
.sim-picker__confirmation button {
|
|
padding: 0.8vh 1.6vh;
|
|
border: 0.1vh solid rgb(255 255 255 / 18%);
|
|
border-radius: 0.45vh;
|
|
background: #151515;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sim-picker__confirmation button.is-primary {
|
|
border-color: #1dd1ce;
|
|
background: #1dd1ce;
|
|
color: #050505;
|
|
}
|
|
|
|
.sim-picker__error {
|
|
position: relative;
|
|
z-index: 1;
|
|
color: #ff453a;
|
|
font-size: 1vh;
|
|
text-align: center;
|
|
}
|
|
:root {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue',
|
|
sans-serif;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0 !important;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background: transparent !important;
|
|
user-select: none;
|
|
}
|
|
button,
|
|
input {
|
|
font: inherit;
|
|
}
|
|
button {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.phone-stage {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: grid;
|
|
place-items: end;
|
|
padding: 0 var(--phone-edge-gap, 24px) var(--phone-edge-gap, 24px) 0;
|
|
pointer-events: none;
|
|
}
|
|
.phone-stage--dev {
|
|
place-items: center;
|
|
padding: 0;
|
|
}
|
|
.phone-stage--peek .phone-resolution-wrapper--primary .phone-device {
|
|
transform: translateY(calc(100% - 190px));
|
|
transform-origin: right bottom;
|
|
}
|
|
.phone-lift-enter-active {
|
|
transition: opacity 0.52s linear;
|
|
}
|
|
.phone-lift-leave-active {
|
|
transition: opacity 0.36s linear;
|
|
}
|
|
.phone-lift-enter-active .phone-resolution-wrapper {
|
|
transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
.phone-lift-leave-active .phone-resolution-wrapper {
|
|
transition: transform 0.36s cubic-bezier(0.7, 0, 0.84, 0);
|
|
}
|
|
.phone-lift-enter-from .phone-resolution-wrapper,
|
|
.phone-lift-leave-to .phone-resolution-wrapper {
|
|
transform: translateY(calc(100% + var(--phone-edge-gap, 24px)));
|
|
}
|
|
.phone-resolution-wrapper {
|
|
width: 390px;
|
|
height: 844px;
|
|
zoom: var(--phone-zoom, 1);
|
|
}
|
|
.phone-device-row {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: flex-end;
|
|
gap: var(--phone-stack-gap, 16px);
|
|
}
|
|
.phone-resolution-wrapper--notification {
|
|
flex: 0 0 auto;
|
|
}
|
|
.phone-device--notification {
|
|
transform: translateY(calc(100% - 190px));
|
|
transform-origin: right bottom;
|
|
}
|
|
.notification-phone-background {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
.phone-device {
|
|
position: relative;
|
|
width: 390px;
|
|
height: 844px;
|
|
padding: 10px;
|
|
overflow: visible;
|
|
pointer-events: auto;
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: 52px;
|
|
transition: transform 0.25s ease;
|
|
box-shadow: none;
|
|
filter: drop-shadow(0 40px 100px #0009);
|
|
}
|
|
.phone-device__frame {
|
|
position: absolute;
|
|
z-index: 100;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: fill;
|
|
pointer-events: none;
|
|
}
|
|
.phone-screen {
|
|
position: relative;
|
|
container-type: size;
|
|
margin: auto;
|
|
margin-top: 8px;
|
|
width: 94.5%;
|
|
height: 98%;
|
|
overflow: hidden;
|
|
background: #08080a;
|
|
border-radius: 40px;
|
|
}
|
|
.phone-app {
|
|
position: absolute !important;
|
|
inset: 0 !important;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0 !important;
|
|
overflow: hidden;
|
|
background: transparent !important;
|
|
color-scheme: dark;
|
|
}
|
|
.phone-app--light {
|
|
color-scheme: light;
|
|
}
|
|
.phone-notification {
|
|
z-index: 85 !important;
|
|
top: 68px !important;
|
|
right: 8px !important;
|
|
left: 8px !important;
|
|
width: auto !important;
|
|
margin-left: 0 !important;
|
|
}
|
|
.phone-notification__icon {
|
|
width: 38px;
|
|
height: 38px;
|
|
object-fit: contain;
|
|
}
|
|
.phone-status-bar {
|
|
position: absolute;
|
|
z-index: 70;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 45px;
|
|
padding: 11px 26px 0;
|
|
color: #fff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
font-size: 12px;
|
|
font-weight: 650;
|
|
text-shadow: 0 1px 3px #0009;
|
|
pointer-events: none;
|
|
}
|
|
.phone-status-bar__indicators {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 3px;
|
|
}
|
|
.phone-home-indicator {
|
|
position: absolute;
|
|
z-index: 90;
|
|
bottom: 0;
|
|
left: 50%;
|
|
width: 140px;
|
|
height: 25px;
|
|
transform: translateX(-50%);
|
|
border: 0;
|
|
background: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.phone-home-indicator span {
|
|
width: 106px;
|
|
height: 4px;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 1px 4px #0008;
|
|
}
|
|
.phone-home-indicator--interactive {
|
|
cursor: pointer;
|
|
}
|
|
.springboard {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
color: white;
|
|
background-position: center;
|
|
background-size: cover;
|
|
transition:
|
|
transform 0.42s cubic-bezier(0.2, 0.85, 0.2, 1),
|
|
filter 0.42s;
|
|
}
|
|
.wallpaper--midnight {
|
|
background:
|
|
radial-gradient(circle at 70% 18%, #5a397eaa, transparent 35%),
|
|
radial-gradient(circle at 20% 72%, #164e7daa, transparent 37%),
|
|
linear-gradient(155deg, #080714, #111126 50%, #02040b);
|
|
}
|
|
.wallpaper--aurora {
|
|
background:
|
|
radial-gradient(circle at 72% 20%, #31e2b288, transparent 33%),
|
|
radial-gradient(circle at 15% 68%, #246fe099, transparent 42%),
|
|
linear-gradient(145deg, #07191b, #132147 55%, #081019);
|
|
}
|
|
.wallpaper--ember {
|
|
background:
|
|
radial-gradient(circle at 70% 22%, #ff764f99, transparent 32%),
|
|
radial-gradient(circle at 15% 65%, #9a306f88, transparent 44%),
|
|
linear-gradient(150deg, #21090b, #29142e 58%, #080810);
|
|
}
|
|
.phone-screen--app .springboard {
|
|
transform: scale(0.91);
|
|
filter: blur(5px);
|
|
pointer-events: none;
|
|
}
|
|
.phone-app--unlocking .springboard {
|
|
animation: springboard-unlock 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
}
|
|
.lock-screen {
|
|
position: absolute;
|
|
z-index: 80;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
color: #fff;
|
|
background-position: center;
|
|
background-size: cover;
|
|
outline: none;
|
|
touch-action: none;
|
|
transform: translateY(var(--lock-drag));
|
|
transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.24, 1);
|
|
will-change: transform, opacity, filter;
|
|
}
|
|
.lock-screen--dragging {
|
|
transition: none;
|
|
}
|
|
.lock-screen__shade {
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
linear-gradient(180deg, #00000012 0%, transparent 34%, #00000012 70%),
|
|
radial-gradient(circle at 50% 34%, transparent 26%, #0000001f 100%);
|
|
pointer-events: none;
|
|
}
|
|
.lock-screen__status {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 11px;
|
|
right: 26px;
|
|
left: 26px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
min-height: 18px;
|
|
filter: drop-shadow(0 1px 2px #0009);
|
|
}
|
|
.lock-screen__lock {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 64px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
filter: drop-shadow(0 1px 2px #0009);
|
|
}
|
|
.lock-screen__indicators {
|
|
position: absolute;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 3px;
|
|
}
|
|
.lock-screen__content {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 94px;
|
|
text-shadow: 0 2px 14px #0005;
|
|
}
|
|
.lock-screen__date {
|
|
font-size: 16px;
|
|
font-weight: 550;
|
|
letter-spacing: -0.2px;
|
|
}
|
|
.lock-screen__time {
|
|
margin-top: -5px;
|
|
color: #ffffffaa;
|
|
font-size: 110px;
|
|
font-weight: 300;
|
|
line-height: 1.04;
|
|
letter-spacing: -7px;
|
|
font-variant-numeric: tabular-nums;
|
|
text-shadow:
|
|
0 0 12px #ffffff38,
|
|
0 2px 16px #0006;
|
|
filter: blur(0.24px);
|
|
}
|
|
.lock-screen__footer {
|
|
position: absolute;
|
|
z-index: 1;
|
|
right: 0;
|
|
bottom: 25px;
|
|
left: 0;
|
|
}
|
|
.lock-screen__swipe {
|
|
width: 100%;
|
|
margin-top: 18px;
|
|
border: 0;
|
|
padding: 0;
|
|
color: #fff;
|
|
background: transparent;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.15px;
|
|
text-shadow: 0 1px 4px #0009;
|
|
}
|
|
.lock-screen__swipe-chevron {
|
|
display: block;
|
|
width: 8px;
|
|
height: 8px;
|
|
margin: 0 auto 2px;
|
|
border-top: 2px solid currentColor;
|
|
border-left: 2px solid currentColor;
|
|
transform: rotate(45deg);
|
|
animation: lock-chevron 1.8s ease-in-out infinite;
|
|
}
|
|
.lock-screen-leave-active {
|
|
transition:
|
|
transform 0.64s cubic-bezier(0.32, 0.72, 0, 1),
|
|
opacity 0.42s ease-out,
|
|
filter 0.64s ease-out;
|
|
}
|
|
.lock-screen-leave-to {
|
|
transform: translateY(-104%) scale(1.035);
|
|
opacity: 0;
|
|
filter: blur(8px);
|
|
}
|
|
@keyframes springboard-unlock {
|
|
from {
|
|
transform: scale(0.92);
|
|
filter: blur(8px) brightness(0.72);
|
|
}
|
|
to {
|
|
transform: none;
|
|
filter: none;
|
|
}
|
|
}
|
|
@keyframes lock-chevron {
|
|
0%,
|
|
55%,
|
|
100% {
|
|
opacity: 0.55;
|
|
transform: translateY(2px) rotate(45deg);
|
|
}
|
|
72% {
|
|
opacity: 1;
|
|
transform: translateY(-2px) rotate(45deg);
|
|
}
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.phone-app--unlocking .springboard,
|
|
.lock-screen__swipe-chevron {
|
|
animation: none;
|
|
}
|
|
.lock-screen-leave-active {
|
|
transition-duration: 0.18s;
|
|
}
|
|
}
|
|
.springboard-track {
|
|
width: 300%;
|
|
height: 100%;
|
|
display: flex;
|
|
touch-action: pan-y;
|
|
transform: translateX(
|
|
calc(var(--springboard-page) * -33.333333% + var(--drag-offset))
|
|
);
|
|
transition: transform 0.46s cubic-bezier(0.22, 0.9, 0.24, 1);
|
|
}
|
|
.springboard--dragging .springboard-track {
|
|
transition: none;
|
|
}
|
|
.springboard-page {
|
|
position: relative;
|
|
width: 33.333333%;
|
|
flex: none;
|
|
padding: 61px 22px 138px;
|
|
}
|
|
.springboard-page--apps {
|
|
padding-top: 82px;
|
|
}
|
|
.app-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 28px 15px;
|
|
}
|
|
.app-icon-button {
|
|
min-width: 0;
|
|
border: 0;
|
|
background: none;
|
|
color: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
text-shadow: 0 1px 4px #000b;
|
|
}
|
|
.app-icon-anchor {
|
|
position: relative;
|
|
display: inline-grid;
|
|
overflow: visible;
|
|
}
|
|
.app-icon {
|
|
width: 56px;
|
|
height: 56px;
|
|
border-radius: 13px;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
color: white;
|
|
box-shadow:
|
|
0 4px 13px #0004,
|
|
inset 0 1px 1px #ffffff55;
|
|
}
|
|
.app-icon-badge {
|
|
position: absolute;
|
|
z-index: 2;
|
|
top: -5px;
|
|
right: -5px;
|
|
text-shadow: none;
|
|
box-shadow: 0 1px 3px #0008;
|
|
}
|
|
.app-icon > img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
pointer-events: none;
|
|
}
|
|
.app-icon-label {
|
|
width: 74px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-size: 11px;
|
|
}
|
|
.app-icon--calculator {
|
|
background: linear-gradient(145deg, #76767b, #1b1b1d);
|
|
}
|
|
.app-icon--camera {
|
|
background: linear-gradient(145deg, #f8f8fa, #a8abb2);
|
|
color: #25262a;
|
|
}
|
|
.app-icon--clock {
|
|
background: linear-gradient(145deg, #242426, #050506);
|
|
outline: 1px solid #ffffff55;
|
|
}
|
|
.app-icon--photos {
|
|
background: conic-gradient(
|
|
#ff3b30,
|
|
#ffcc00,
|
|
#34c759,
|
|
#0a84ff,
|
|
#af52de,
|
|
#ff3b30
|
|
);
|
|
}
|
|
.app-icon--store {
|
|
background: linear-gradient(145deg, #35a8ff, #0878df);
|
|
}
|
|
.app-icon--settings {
|
|
background: linear-gradient(145deg, #aeb3bd, #50535b);
|
|
}
|
|
.app-icon--image {
|
|
background: transparent;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
.app-dock {
|
|
position: absolute;
|
|
z-index: 8;
|
|
bottom: 43px;
|
|
left: 15px;
|
|
right: 15px;
|
|
height: 82px;
|
|
padding: 13px 18px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border: 1px solid #ffffff28;
|
|
border-radius: 27px;
|
|
background: #ffffff22;
|
|
box-shadow:
|
|
inset 0 1px #ffffff26,
|
|
0 8px 28px #0004;
|
|
backdrop-filter: blur(24px) saturate(150%);
|
|
-webkit-backdrop-filter: blur(24px) saturate(150%);
|
|
}
|
|
.page-indicator {
|
|
position: absolute;
|
|
bottom: 132px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 14px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 7px;
|
|
}
|
|
.page-indicator button {
|
|
width: 6px;
|
|
height: 6px;
|
|
padding: 0;
|
|
border: 0;
|
|
border-radius: 50%;
|
|
background: #ffffff60;
|
|
}
|
|
.page-indicator button.active {
|
|
background: white;
|
|
}
|
|
.dock-enter-active,
|
|
.dock-leave-active {
|
|
transition: 0.25s;
|
|
}
|
|
.dock-enter-from,
|
|
.dock-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(8px);
|
|
}
|
|
.widgets-stack {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
.widget-row {
|
|
display: grid;
|
|
grid-template-columns: 1.45fr 1fr;
|
|
gap: 12px;
|
|
}
|
|
.widget {
|
|
border: 1px solid #ffffff22;
|
|
border-radius: 23px;
|
|
background: #15182288;
|
|
box-shadow:
|
|
inset 0 1px #ffffff20,
|
|
0 12px 30px #0003;
|
|
backdrop-filter: blur(20px) saturate(150%);
|
|
-webkit-backdrop-filter: blur(20px) saturate(150%);
|
|
}
|
|
.widget--weather {
|
|
height: 146px;
|
|
padding: 18px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background: linear-gradient(145deg, #299cf0bb, #6739d3aa);
|
|
}
|
|
.widget--weather div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.widget--weather strong {
|
|
font-size: 50px;
|
|
font-weight: 250;
|
|
line-height: 1;
|
|
}
|
|
.widget--weather small {
|
|
margin-top: 4px;
|
|
}
|
|
.widget-row .widget {
|
|
height: 128px;
|
|
padding: 14px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.widget--calendar span {
|
|
color: #ff453a;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
}
|
|
.widget--calendar strong {
|
|
font-size: 48px;
|
|
font-weight: 300;
|
|
}
|
|
.widget--battery svg {
|
|
color: #45df78;
|
|
}
|
|
.widget--battery strong {
|
|
font-size: 29px;
|
|
margin-top: 12px;
|
|
}
|
|
.widget small {
|
|
opacity: 0.72;
|
|
}
|
|
.widget--media {
|
|
height: 78px;
|
|
padding: 11px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.widget--media__art {
|
|
width: 54px;
|
|
height: 54px;
|
|
border-radius: 12px;
|
|
background: conic-gradient(
|
|
from 20deg,
|
|
#ff453a,
|
|
#ff9f0a,
|
|
#5e5ce6,
|
|
#64d2ff,
|
|
#ff453a
|
|
);
|
|
}
|
|
.widget--media__copy {
|
|
display: flex;
|
|
flex: 1;
|
|
min-width: 0;
|
|
flex-direction: column;
|
|
}
|
|
.widget--media__copy small {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.widget--media button {
|
|
border: 0;
|
|
background: none;
|
|
color: white;
|
|
padding: 4px;
|
|
}
|
|
.springboard-page--library {
|
|
padding-top: 62px;
|
|
}
|
|
.app-library-search,
|
|
.app-search {
|
|
height: 36px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
padding: 0 10px;
|
|
border-radius: 11px;
|
|
background: #ffffff25;
|
|
color: #ffffffb0;
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
}
|
|
.app-library-search input,
|
|
.app-search input {
|
|
width: 100%;
|
|
border: 0;
|
|
outline: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
}
|
|
.app-library-search button {
|
|
border: 0;
|
|
background: none;
|
|
color: white;
|
|
}
|
|
.app-library-groups {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 13px 12px;
|
|
margin-top: 16px;
|
|
transition:
|
|
transform 0.35s ease,
|
|
opacity 0.35s ease;
|
|
}
|
|
.app-library-groups--behind {
|
|
transform: scale(0.95);
|
|
opacity: 0.45;
|
|
}
|
|
.app-library-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
.app-library-group__icons {
|
|
width: 100%;
|
|
aspect-ratio: 1;
|
|
padding: 11px;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: repeat(2, 1fr);
|
|
place-items: center;
|
|
gap: 8px;
|
|
border: 1px solid #ffffff24;
|
|
border-radius: 24px;
|
|
background: #00000032;
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
}
|
|
.app-library-group .app-icon {
|
|
width: 56px;
|
|
height: 56px;
|
|
border-radius: 13px;
|
|
}
|
|
.app-library-group > span {
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
text-shadow: 0 1px 4px #000c;
|
|
}
|
|
.app-library-more {
|
|
width: 56px;
|
|
height: 56px;
|
|
padding: 0;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: repeat(2, 1fr);
|
|
place-items: center;
|
|
gap: 3px;
|
|
border: 0;
|
|
border-radius: 12px;
|
|
background: transparent;
|
|
}
|
|
.app-library-more img {
|
|
width: 22px;
|
|
height: 22px;
|
|
object-fit: contain;
|
|
}
|
|
.app-library-all {
|
|
position: absolute;
|
|
z-index: 5;
|
|
top: 112px;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 6px 22px 55px;
|
|
overflow-y: auto;
|
|
background: #0909108a;
|
|
backdrop-filter: blur(24px) saturate(145%);
|
|
-webkit-backdrop-filter: blur(24px) saturate(145%);
|
|
}
|
|
.app-library-letter h2 {
|
|
margin: 8px 0 1px;
|
|
font-size: 16px;
|
|
}
|
|
.app-library-row {
|
|
height: 62px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 13px;
|
|
}
|
|
.app-library-row > span {
|
|
align-self: stretch;
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid #ffffff1c;
|
|
font-size: 16px;
|
|
}
|
|
.app-library-row .app-icon {
|
|
width: 46px;
|
|
height: 46px;
|
|
border-radius: 11px;
|
|
}
|
|
.app-library-empty {
|
|
text-align: center;
|
|
color: #ffffffaa;
|
|
}
|
|
.app-library-all-enter-active,
|
|
.app-library-all-leave-active {
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
.app-library-all-enter-from,
|
|
.app-library-all-leave-to {
|
|
opacity: 0;
|
|
}
|
|
.app-library-results {
|
|
margin-top: 14px;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 18px 10px;
|
|
}
|
|
.app-icon-button--compact .app-icon {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 11px;
|
|
}
|
|
.app-library-group .app-icon-button--compact .app-icon {
|
|
width: 56px;
|
|
height: 56px;
|
|
border-radius: 13px;
|
|
}
|
|
.app-window {
|
|
position: absolute;
|
|
z-index: 50;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
background: #000;
|
|
transform-origin: 0 0;
|
|
backface-visibility: hidden;
|
|
will-change: transform, border-radius, opacity;
|
|
}
|
|
.app-window-enter-active {
|
|
transition:
|
|
transform 0.46s cubic-bezier(0.32, 0.72, 0, 1),
|
|
border-radius 0.46s cubic-bezier(0.32, 0.72, 0, 1),
|
|
opacity 0.18s ease-out;
|
|
}
|
|
.app-window-leave-active {
|
|
transition:
|
|
transform 0.4s cubic-bezier(0.32, 0, 0.67, 0),
|
|
border-radius 0.4s cubic-bezier(0.32, 0, 0.67, 0),
|
|
opacity 0.22s ease-in;
|
|
}
|
|
.app-window-enter-from,
|
|
.app-window-leave-to {
|
|
transform: translate(var(--launch-x), var(--launch-y))
|
|
scale(var(--launch-scale-x), var(--launch-scale-y));
|
|
opacity: 0.72;
|
|
border-radius: var(--launch-radius);
|
|
}
|
|
.app-window-enter-to,
|
|
.app-window-leave-from {
|
|
transform: none;
|
|
opacity: 1;
|
|
border-radius: 0;
|
|
}
|
|
.native-app {
|
|
position: absolute;
|
|
inset: 0;
|
|
padding-top: 46px;
|
|
padding-bottom: 25px;
|
|
overflow: hidden;
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
.app-header {
|
|
padding: 17px 18px 8px;
|
|
}
|
|
.app-header h1 {
|
|
margin: 0;
|
|
font-size: 30px;
|
|
line-height: 1.1;
|
|
}
|
|
.app-header small {
|
|
color: #8e8e93;
|
|
text-transform: uppercase;
|
|
font-weight: 650;
|
|
}
|
|
.app-tabs {
|
|
position: absolute;
|
|
bottom: 22px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 51px;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 8px 7px 0;
|
|
border-top: 1px solid #ffffff1f;
|
|
background: #141416e8;
|
|
backdrop-filter: blur(22px);
|
|
-webkit-backdrop-filter: blur(22px);
|
|
}
|
|
.app-tabs button {
|
|
min-width: 0;
|
|
padding: 0 4px;
|
|
border: 0;
|
|
background: none;
|
|
color: #8e8e93;
|
|
font-size: 10px;
|
|
}
|
|
.app-tabs button.active {
|
|
color: #0a84ff;
|
|
}
|
|
.app-search {
|
|
margin: 5px 17px;
|
|
background: #1c1c1e;
|
|
color: #a0a0a7;
|
|
}
|
|
.calculator-app {
|
|
padding: 85px 19px 29px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.calculator-display {
|
|
height: 145px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
justify-content: flex-end;
|
|
padding: 0 8px 12px;
|
|
overflow: hidden;
|
|
font-size: 65px;
|
|
font-weight: 250;
|
|
white-space: nowrap;
|
|
}
|
|
.calculator-result {
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
.calculator-calculation {
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
color: #8e8e93;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
letter-spacing: 0;
|
|
line-height: 1.2;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.calculator-pad {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 11px;
|
|
}
|
|
.calculator-pad button {
|
|
aspect-ratio: 1;
|
|
border: 0;
|
|
border-radius: 50%;
|
|
background: #333336;
|
|
color: white;
|
|
font-size: 29px;
|
|
}
|
|
.calculator-pad button.utility {
|
|
background: #a5a5aa;
|
|
color: #000;
|
|
}
|
|
.calculator-pad button.operator {
|
|
background: #ff9f0a;
|
|
}
|
|
.calculator-pad button.zero {
|
|
grid-column: span 2;
|
|
aspect-ratio: auto;
|
|
border-radius: 50px;
|
|
text-align: left;
|
|
padding-left: 27px;
|
|
}
|
|
.clock-content {
|
|
min-height: 0;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 0;
|
|
}
|
|
.phone-call-content {
|
|
min-height: 0;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
.phone-calls-app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.phone-calls-app.phone-app--light {
|
|
background: #f2f2f7;
|
|
color: #000;
|
|
}
|
|
.clock-konsta-list {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
.clock-world-now {
|
|
margin: 0;
|
|
padding: 76px 16px 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.clock-world-location {
|
|
color: #8e8e93;
|
|
font-size: 19px;
|
|
font-weight: 500;
|
|
}
|
|
.clock-world-time {
|
|
margin-top: 8px;
|
|
font-variant-numeric: tabular-nums;
|
|
font-size: min(76px, 20cqw);
|
|
font-weight: 200;
|
|
letter-spacing: -4px;
|
|
}
|
|
.clock-world-zone {
|
|
margin-top: 2px;
|
|
color: #8e8e93;
|
|
font-size: 14px;
|
|
}
|
|
.clock-alarm-list {
|
|
margin-top: 8px;
|
|
}
|
|
.clock-alarm-item {
|
|
min-height: 86px;
|
|
}
|
|
.clock-alarm-remove {
|
|
width: 28px;
|
|
min-width: 28px;
|
|
height: 28px;
|
|
padding: 0;
|
|
}
|
|
.clock-alarm-remove svg {
|
|
width: 17px;
|
|
height: 17px;
|
|
stroke-width: 3;
|
|
}
|
|
.clock-alarm-editor {
|
|
min-height: 0;
|
|
flex: 1;
|
|
margin: 0;
|
|
padding: 8px 0 32px;
|
|
overflow-y: auto;
|
|
}
|
|
.time-wheel-picker {
|
|
position: relative;
|
|
width: calc(100% - 32px);
|
|
height: 200px;
|
|
margin: 0 16px 16px;
|
|
display: grid;
|
|
grid-template-columns: 64px 64px;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.time-wheel-picker--duration {
|
|
grid-template-columns: repeat(3, 64px);
|
|
gap: 0;
|
|
}
|
|
.time-wheel-picker__field {
|
|
position: relative;
|
|
width: 64px;
|
|
height: 200px;
|
|
}
|
|
.time-wheel-picker--duration .time-wheel-picker__field {
|
|
width: 64px;
|
|
}
|
|
.time-wheel-picker__selection {
|
|
position: absolute;
|
|
z-index: 0;
|
|
top: 80px;
|
|
right: 0;
|
|
left: 0;
|
|
height: 40px;
|
|
border-radius: 14px;
|
|
background: #2c2c2e;
|
|
pointer-events: none;
|
|
}
|
|
.time-wheel-picker__column {
|
|
position: relative;
|
|
z-index: 1;
|
|
height: 200px;
|
|
padding: 80px 0;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
scrollbar-width: none;
|
|
scroll-snap-type: y mandatory;
|
|
overscroll-behavior: contain;
|
|
touch-action: none;
|
|
cursor: grab;
|
|
user-select: none;
|
|
mask-image: linear-gradient(
|
|
to bottom,
|
|
transparent 0,
|
|
#000 30%,
|
|
#000 70%,
|
|
transparent 100%
|
|
);
|
|
}
|
|
.time-wheel-picker--unit-labels .time-wheel-picker__column {
|
|
width: 36px;
|
|
}
|
|
.time-wheel-picker__unit {
|
|
position: absolute;
|
|
z-index: 2;
|
|
top: 80px;
|
|
left: 34px;
|
|
height: 40px;
|
|
color: #8e8e93;
|
|
font-size: 9px;
|
|
line-height: 40px;
|
|
pointer-events: none;
|
|
}
|
|
.time-wheel-picker__column:active {
|
|
cursor: grabbing;
|
|
}
|
|
.time-wheel-picker__column::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.time-wheel-picker__value {
|
|
width: 100%;
|
|
height: 40px;
|
|
display: block;
|
|
padding: 0;
|
|
border: 0;
|
|
outline: none;
|
|
scroll-snap-align: center;
|
|
background: transparent;
|
|
color: #8e8e93;
|
|
font-size: 27px;
|
|
font-weight: 300;
|
|
line-height: 40px;
|
|
opacity: 0.62;
|
|
transition:
|
|
color 120ms ease,
|
|
opacity 120ms ease;
|
|
}
|
|
.time-wheel-picker__value:focus-visible {
|
|
border-radius: 8px;
|
|
outline: 2px solid #ff9f0a;
|
|
outline-offset: -2px;
|
|
}
|
|
.time-wheel-picker__value--selected {
|
|
color: #fff;
|
|
opacity: 1;
|
|
}
|
|
.clock-alarm-delete {
|
|
width: calc(100% - 32px);
|
|
margin: 18px 16px 0;
|
|
}
|
|
.clock-tool {
|
|
margin: 0;
|
|
padding: 0 16px;
|
|
text-align: center;
|
|
}
|
|
.clock-digits {
|
|
margin: 70px 0 54px;
|
|
font-variant-numeric: tabular-nums;
|
|
font-size: min(52px, 14cqw);
|
|
font-weight: 200;
|
|
}
|
|
.clock-sound-menu {
|
|
min-height: 0;
|
|
max-height: calc(100% - 52px);
|
|
flex: 0 1 auto;
|
|
align-self: stretch;
|
|
margin-top: 8px;
|
|
margin-bottom: 8px;
|
|
overflow-y: auto;
|
|
}
|
|
.clock-sound-selection {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
color: #8e8e93;
|
|
}
|
|
.clock-sound-selection svg {
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
.clock-actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 12px 0;
|
|
}
|
|
.clock-action-button {
|
|
width: 66px;
|
|
height: 66px;
|
|
min-width: 66px;
|
|
padding: 0;
|
|
}
|
|
.clock-lap-list {
|
|
margin-top: 24px;
|
|
}
|
|
.timer-ring {
|
|
position: relative;
|
|
width: 210px;
|
|
height: 210px;
|
|
margin: 12px auto 16px;
|
|
display: grid;
|
|
place-items: center;
|
|
font-size: 42px;
|
|
font-weight: 200;
|
|
}
|
|
.timer-ring svg {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
transform: rotate(-90deg);
|
|
}
|
|
.timer-ring circle {
|
|
fill: none;
|
|
stroke-width: 4;
|
|
}
|
|
.timer-ring-track {
|
|
stroke: #ff9f0a33;
|
|
}
|
|
.timer-ring-progress {
|
|
stroke: #ff9f0a;
|
|
stroke-dasharray: 100;
|
|
stroke-linecap: round;
|
|
transition: stroke-dashoffset 250ms linear;
|
|
}
|
|
.timer-ring span {
|
|
position: relative;
|
|
z-index: 1;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.clock-timer-settings {
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
.clock-timer-note {
|
|
margin-top: 16px;
|
|
}
|
|
.clock-timer-sound {
|
|
margin-top: 12px;
|
|
}
|
|
.clock-timer {
|
|
padding-bottom: 28px;
|
|
}
|
|
.camera-app {
|
|
padding: 45px 0 25px;
|
|
background: #080808;
|
|
}
|
|
.camera-viewfinder {
|
|
position: relative;
|
|
height: 510px;
|
|
overflow: hidden;
|
|
background:
|
|
radial-gradient(circle at 66% 25%, #ffc66c99, transparent 18%),
|
|
linear-gradient(145deg, #193641, #443354 55%, #0c1b20);
|
|
}
|
|
.camera-facing--front {
|
|
background:
|
|
radial-gradient(circle at 48% 32%, #ffb58f99, transparent 16%),
|
|
linear-gradient(145deg, #56394e, #172f48);
|
|
}
|
|
.camera-grid {
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
linear-gradient(
|
|
transparent 33%,
|
|
#ffffff30 33.2%,
|
|
transparent 33.5%,
|
|
transparent 66%,
|
|
#ffffff30 66.2%,
|
|
transparent 66.5%
|
|
),
|
|
linear-gradient(
|
|
90deg,
|
|
transparent 33%,
|
|
#ffffff30 33.2%,
|
|
transparent 33.5%,
|
|
transparent 66%,
|
|
#ffffff30 66.2%,
|
|
transparent 66.5%
|
|
);
|
|
}
|
|
.camera-flash {
|
|
position: absolute;
|
|
z-index: 3;
|
|
inset: 0;
|
|
background: white;
|
|
opacity: 0;
|
|
transition: opacity 0.12s;
|
|
}
|
|
.camera-flash.active {
|
|
opacity: 1;
|
|
}
|
|
.camera-zoom {
|
|
position: absolute;
|
|
bottom: 14px;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 7px;
|
|
}
|
|
.camera-zoom button {
|
|
width: 34px;
|
|
height: 34px;
|
|
border: 0;
|
|
border-radius: 50%;
|
|
background: #0009;
|
|
color: white;
|
|
font-size: 11px;
|
|
}
|
|
.camera-zoom button.active {
|
|
color: #ffcc00;
|
|
}
|
|
.camera-modes {
|
|
height: 35px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 18px;
|
|
}
|
|
.camera-modes button {
|
|
border: 0;
|
|
background: none;
|
|
color: white;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
}
|
|
.camera-modes button.active {
|
|
color: #ffcc00;
|
|
}
|
|
.camera-controls {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.camera-controls > button {
|
|
justify-self: center;
|
|
width: 43px;
|
|
height: 43px;
|
|
border: 0;
|
|
border-radius: 50%;
|
|
background: #29292b;
|
|
color: white;
|
|
}
|
|
.camera-controls .shutter {
|
|
width: 65px;
|
|
height: 65px;
|
|
border: 4px solid white;
|
|
background: #fff;
|
|
color: #111;
|
|
box-shadow: inset 0 0 0 3px #000;
|
|
}
|
|
.photos-app,
|
|
.store-app {
|
|
background: #000;
|
|
}
|
|
.photo-grid {
|
|
height: calc(100% - 115px);
|
|
overflow: auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-auto-rows: 111px;
|
|
gap: 2px;
|
|
padding-bottom: 65px;
|
|
}
|
|
.photo-tile {
|
|
min-height: 100px;
|
|
}
|
|
.album-cards {
|
|
padding: 12px 17px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 14px;
|
|
}
|
|
.album-cards article {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.album-cards .photo-tile {
|
|
height: 145px;
|
|
border-radius: 13px;
|
|
}
|
|
.album-cards small {
|
|
color: #888;
|
|
}
|
|
.album-cards .favorites {
|
|
background: linear-gradient(145deg, #ff4777, #7f42db);
|
|
}
|
|
.featured-photo {
|
|
padding: 12px 17px;
|
|
}
|
|
.featured-photo p {
|
|
text-transform: uppercase;
|
|
color: #aaa;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
.featured-photo div {
|
|
height: 390px;
|
|
border-radius: 19px;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
padding: 18px;
|
|
}
|
|
.featured-photo span {
|
|
font-size: 25px;
|
|
font-weight: 700;
|
|
text-shadow: 0 2px 8px #000;
|
|
}
|
|
.store-app {
|
|
overflow-y: auto;
|
|
}
|
|
.store-feature {
|
|
margin: 8px 17px;
|
|
padding: 18px;
|
|
height: 188px;
|
|
border-radius: 18px;
|
|
background: linear-gradient(145deg, #3157bd, #783da0 60%, #ec6b75);
|
|
}
|
|
.store-feature p {
|
|
margin: 0;
|
|
color: #d7d9ff;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
}
|
|
.store-feature h2 {
|
|
margin: 8px 0;
|
|
font-size: 29px;
|
|
}
|
|
.store-feature span {
|
|
font-size: 13px;
|
|
color: #eee;
|
|
}
|
|
.store-list {
|
|
padding: 0 17px 80px;
|
|
}
|
|
.store-list article {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #ffffff18;
|
|
}
|
|
.store-icon {
|
|
width: 49px;
|
|
height: 49px;
|
|
border-radius: 12px;
|
|
display: grid;
|
|
place-items: center;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
}
|
|
.store-list article > div:nth-child(2) {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
.store-list small {
|
|
color: #888;
|
|
}
|
|
.store-list button {
|
|
border: 0;
|
|
border-radius: 20px;
|
|
padding: 5px 15px;
|
|
background: #222;
|
|
color: #0a84ff;
|
|
font-weight: 700;
|
|
}
|
|
/* Reference-accurate app surfaces. These remain scoped to the phone resource. */
|
|
.calculator-app {
|
|
padding: 54px 16px 27px;
|
|
}
|
|
.calculator-display {
|
|
height: 226px;
|
|
padding: 0 5px 4px;
|
|
font-size: 78px;
|
|
letter-spacing: -5px;
|
|
}
|
|
.calculator-pad {
|
|
gap: 11px 14px;
|
|
}
|
|
.calculator-pad button {
|
|
font-size: 28px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.reference-camera {
|
|
display: grid;
|
|
grid-template-rows: 83px minmax(0, 1fr) 190px;
|
|
padding: 0 0 24px;
|
|
background: #020202;
|
|
}
|
|
.camera-topbar {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
align-items: end;
|
|
padding: 45px 15px 11px;
|
|
}
|
|
.camera-topbar > div {
|
|
display: flex;
|
|
gap: 17px;
|
|
}
|
|
.camera-topbar > svg {
|
|
justify-self: end;
|
|
}
|
|
.camera-topbar button {
|
|
border: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
}
|
|
.camera-topbar .camera-chevron {
|
|
width: 34px;
|
|
height: 26px;
|
|
display: grid;
|
|
place-items: center;
|
|
border-radius: 20px;
|
|
background: #262629;
|
|
}
|
|
.reference-viewfinder {
|
|
position: relative;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
background:
|
|
radial-gradient(circle at 66% 21%, #ffd88baa, transparent 15%),
|
|
radial-gradient(circle at 45% 52%, #6d8ca5 0 6%, transparent 7%),
|
|
linear-gradient(150deg, #173542, #5b3e5b 56%, #13191c);
|
|
}
|
|
.reference-viewfinder::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(
|
|
115deg,
|
|
transparent 45%,
|
|
#ffffff0f 46%,
|
|
transparent 48%
|
|
);
|
|
}
|
|
.focus-corner {
|
|
position: absolute;
|
|
z-index: 2;
|
|
width: 24px;
|
|
height: 24px;
|
|
border-color: white;
|
|
}
|
|
.focus-corner--tl {
|
|
top: 1px;
|
|
left: 1px;
|
|
border-top: 1px solid;
|
|
border-left: 1px solid;
|
|
}
|
|
.focus-corner--tr {
|
|
top: 1px;
|
|
right: 1px;
|
|
border-top: 1px solid;
|
|
border-right: 1px solid;
|
|
}
|
|
.focus-corner--bl {
|
|
bottom: 1px;
|
|
left: 1px;
|
|
border-bottom: 1px solid;
|
|
border-left: 1px solid;
|
|
}
|
|
.focus-corner--br {
|
|
right: 1px;
|
|
bottom: 1px;
|
|
border-right: 1px solid;
|
|
border-bottom: 1px solid;
|
|
}
|
|
.reference-viewfinder .camera-zoom {
|
|
z-index: 3;
|
|
bottom: 13px;
|
|
}
|
|
.reference-viewfinder .camera-zoom button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #0008;
|
|
font-weight: 700;
|
|
}
|
|
.reference-viewfinder .camera-zoom small {
|
|
margin-left: 1px;
|
|
font-size: 8px;
|
|
}
|
|
.reference-camera-footer {
|
|
display: grid;
|
|
grid-template-rows: 43px 1fr;
|
|
background: #020202;
|
|
}
|
|
.camera-mode-strip {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 21px;
|
|
padding: 0 148px;
|
|
overflow: hidden;
|
|
}
|
|
.camera-mode-strip button {
|
|
flex: none;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: white;
|
|
font-size: 10px;
|
|
font-weight: 650;
|
|
text-transform: uppercase;
|
|
white-space: nowrap;
|
|
}
|
|
.camera-mode-strip button.active {
|
|
color: #ffd60a;
|
|
}
|
|
.camera-shutter-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
align-items: center;
|
|
padding: 0 31px 12px;
|
|
}
|
|
.camera-thumbnail {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 4px;
|
|
}
|
|
.reference-shutter {
|
|
justify-self: center;
|
|
width: 62px;
|
|
height: 62px;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 3px solid white;
|
|
border-radius: 50%;
|
|
background: white;
|
|
color: #111;
|
|
box-shadow: inset 0 0 0 3px #020202;
|
|
}
|
|
.reference-flip {
|
|
justify-self: end;
|
|
width: 42px;
|
|
height: 42px;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 0;
|
|
border-radius: 50%;
|
|
background: #1c1c1e;
|
|
color: white;
|
|
}
|
|
|
|
.reference-tabbar {
|
|
position: absolute;
|
|
z-index: 6;
|
|
right: 0;
|
|
bottom: 21px;
|
|
left: 0;
|
|
height: 58px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-around;
|
|
padding: 7px 5px 0;
|
|
border-top: 1px solid #ffffff18;
|
|
background: #101012dd;
|
|
backdrop-filter: blur(22px);
|
|
-webkit-backdrop-filter: blur(22px);
|
|
}
|
|
.reference-tabbar button {
|
|
min-width: 49px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 2px;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: #77777c;
|
|
font-size: 9px;
|
|
}
|
|
.reference-tabbar button.active {
|
|
color: #0a84ff;
|
|
}
|
|
.clock-app {
|
|
padding: 44px 0 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background: #020202;
|
|
color: #fff;
|
|
}
|
|
.phone-app--light .clock-app {
|
|
background: #f2f2f7;
|
|
color: #000;
|
|
}
|
|
.phone-app--light .time-wheel-picker__selection {
|
|
background: #e5e5ea;
|
|
}
|
|
.phone-app--light .time-wheel-picker__value--selected {
|
|
color: #000;
|
|
}
|
|
|
|
.reference-photos {
|
|
padding: 0 0 79px;
|
|
background: #020202;
|
|
}
|
|
.photos-library,
|
|
.photos-scroll {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
.photos-floating-header {
|
|
position: sticky;
|
|
z-index: 3;
|
|
top: 0;
|
|
height: 95px;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 8px;
|
|
padding: 47px 17px 14px;
|
|
background: linear-gradient(#000 55%, transparent);
|
|
}
|
|
.photos-floating-header > div {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
.photos-floating-header strong {
|
|
font-size: 17px;
|
|
}
|
|
.photos-floating-header span {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
.photos-floating-header button {
|
|
height: 27px;
|
|
padding: 0 12px;
|
|
border: 0;
|
|
border-radius: 18px;
|
|
background: #ffffff1d;
|
|
color: white;
|
|
font-size: 11px;
|
|
font-weight: 650;
|
|
backdrop-filter: blur(15px);
|
|
-webkit-backdrop-filter: blur(15px);
|
|
}
|
|
.photos-floating-header button:last-child {
|
|
width: 28px;
|
|
padding: 0;
|
|
border-radius: 50%;
|
|
}
|
|
.reference-photo-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 2px;
|
|
}
|
|
.reference-photo-grid article {
|
|
aspect-ratio: 1;
|
|
}
|
|
.photos-count {
|
|
padding: 15px;
|
|
text-align: center;
|
|
font-size: 11px;
|
|
}
|
|
.photos-period {
|
|
position: sticky;
|
|
bottom: 5px;
|
|
width: max-content;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
padding: 3px;
|
|
border-radius: 22px;
|
|
background: #303033aa;
|
|
backdrop-filter: blur(18px);
|
|
-webkit-backdrop-filter: blur(18px);
|
|
}
|
|
.photos-period button {
|
|
padding: 5px 12px;
|
|
border: 0;
|
|
border-radius: 18px;
|
|
background: transparent;
|
|
color: #ddd;
|
|
font-size: 10px;
|
|
font-weight: 650;
|
|
}
|
|
.photos-period button.active {
|
|
background: #ffffff25;
|
|
color: white;
|
|
}
|
|
.photos-scroll {
|
|
padding: 82px 16px 20px;
|
|
}
|
|
.photos-scroll > h1 {
|
|
margin: 0 0 28px;
|
|
font-size: 34px;
|
|
}
|
|
.photos-section-title {
|
|
margin-top: 22px;
|
|
padding-top: 13px;
|
|
display: flex;
|
|
align-items: end;
|
|
border-top: 1px solid #ffffff1b;
|
|
}
|
|
.photos-section-title h2 {
|
|
flex: 1;
|
|
margin: 0;
|
|
font-size: 22px;
|
|
}
|
|
.photos-section-title button {
|
|
border: 0;
|
|
background: transparent;
|
|
color: #0a84ff;
|
|
}
|
|
.memory-card {
|
|
position: relative;
|
|
height: 410px;
|
|
margin-top: 12px;
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: 17px;
|
|
box-shadow: inset 0 -160px 100px #0008;
|
|
}
|
|
.memory-card > svg {
|
|
margin-left: auto;
|
|
}
|
|
.memory-card > div {
|
|
margin-top: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.memory-card strong {
|
|
font-size: 26px;
|
|
}
|
|
.memory-card span {
|
|
font-size: 11px;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
.featured-row {
|
|
display: flex;
|
|
gap: 9px;
|
|
margin-top: 12px;
|
|
overflow-x: auto;
|
|
}
|
|
.featured-row article {
|
|
width: 88%;
|
|
flex: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.featured-row article > div {
|
|
aspect-ratio: 1;
|
|
border-radius: 10px;
|
|
}
|
|
.featured-row article span {
|
|
color: #777;
|
|
font-size: 12px;
|
|
}
|
|
.reference-photos .photo-grid {
|
|
height: auto;
|
|
margin-top: 13px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.reference-store {
|
|
padding: 0 0 79px;
|
|
background: #0e0e0e;
|
|
}
|
|
.store-scroll {
|
|
height: 100%;
|
|
padding: 52px 19px 26px;
|
|
overflow-y: auto;
|
|
}
|
|
.store-title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.store-title > div {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 11px;
|
|
}
|
|
.store-title h1 {
|
|
margin: 0;
|
|
font-size: 34px;
|
|
}
|
|
.store-title strong {
|
|
color: #777;
|
|
font-size: 18px;
|
|
}
|
|
.store-title > span {
|
|
width: 37px;
|
|
height: 37px;
|
|
display: grid;
|
|
place-items: center;
|
|
border-radius: 50%;
|
|
background: linear-gradient(145deg, #3a3c46, #1b1c22);
|
|
}
|
|
.editorial-card {
|
|
position: relative;
|
|
height: 390px;
|
|
margin-bottom: 18px;
|
|
padding: 20px;
|
|
overflow: hidden;
|
|
border-radius: 22px;
|
|
box-shadow: 0 10px 28px #0007;
|
|
}
|
|
.editorial-card small {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
.editorial-card h2 {
|
|
width: 80%;
|
|
margin: 7px 0;
|
|
font-size: 28px;
|
|
line-height: 1.05;
|
|
}
|
|
.editorial-card p {
|
|
width: 80%;
|
|
margin: 0;
|
|
color: #ffffffbf;
|
|
font-size: 14px;
|
|
}
|
|
.editorial-card--sky {
|
|
background:
|
|
radial-gradient(
|
|
circle at 68% 63%,
|
|
#fff 0 4%,
|
|
#4de1fb 5% 9%,
|
|
transparent 10%
|
|
),
|
|
radial-gradient(circle at 65% 60%, #c653ff99, transparent 31%),
|
|
linear-gradient(145deg, #10144d, #4630a6 58%, #1bc7e2);
|
|
}
|
|
.editorial-orbit {
|
|
position: absolute;
|
|
right: -10px;
|
|
bottom: 30px;
|
|
width: 230px;
|
|
height: 230px;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 2px solid #ffffff99;
|
|
border-radius: 50%;
|
|
font-size: 74px;
|
|
transform: rotate(-18deg);
|
|
}
|
|
.editorial-card--music {
|
|
background:
|
|
radial-gradient(circle at 60% 70%, #ffdd45, transparent 22%),
|
|
linear-gradient(155deg, #531849, #ca2c72 60%, #f48c46);
|
|
}
|
|
.editorial-wave {
|
|
position: absolute;
|
|
right: 16px;
|
|
bottom: 28px;
|
|
left: 16px;
|
|
height: 110px;
|
|
background: repeating-linear-gradient(
|
|
90deg,
|
|
#ffffffaa 0 4px,
|
|
transparent 4px 12px
|
|
);
|
|
clip-path: polygon(
|
|
0 45%,
|
|
10% 10%,
|
|
20% 82%,
|
|
30% 25%,
|
|
40% 70%,
|
|
50% 5%,
|
|
60% 85%,
|
|
70% 28%,
|
|
80% 68%,
|
|
90% 13%,
|
|
100% 55%,
|
|
100% 70%,
|
|
0 70%
|
|
);
|
|
}
|
|
.editorial-card--play {
|
|
height: 330px;
|
|
background:
|
|
radial-gradient(circle at 80% 70%, #64ffbe88, transparent 30%),
|
|
linear-gradient(145deg, #0d4137, #18236c);
|
|
}
|
|
.store-section-title {
|
|
padding: 14px 0 12px;
|
|
border-top: 1px solid #ffffff1c;
|
|
}
|
|
.store-section-title h2 {
|
|
margin: 0;
|
|
font-size: 19px;
|
|
}
|
|
.store-section-title p {
|
|
margin: 3px 0 0;
|
|
color: #777;
|
|
font-size: 13px;
|
|
}
|
|
.reference-store .store-feature {
|
|
margin: 0 0 20px;
|
|
}
|
|
.reference-store .store-list {
|
|
padding: 0;
|
|
}
|
|
|
|
.phone-screen--app .phone-app--light .phone-status-bar {
|
|
color: #000;
|
|
}
|
|
* {
|
|
scrollbar-width: none;
|
|
}
|
|
*::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.camera-mode-strip {
|
|
padding: 0;
|
|
}
|
|
.camera-mode-strip button:first-child {
|
|
margin-left: -205px;
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
scroll-behavior: auto !important;
|
|
animation-duration: 0.01ms !important;
|
|
transition-duration: 0.01ms !important;
|
|
}
|
|
}
|