File size: 4,615 Bytes
5501681 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | <html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Display - Dark Theme</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #121212; color: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute; top: 0; left: 0; width: 100%; height: 120px;
background: #121212;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px;
box-sizing: border-box;
}
.status-left { display: flex; align-items: center; gap: 18px; }
.status-time { font-size: 40px; font-weight: 600; letter-spacing: 0.5px; }
.dot { width: 18px; height: 18px; background: #E0E0E0; opacity: 0.9; border-radius: 50%; }
.status-right { display: flex; align-items: center; gap: 24px; }
/* Simple icons */
.icon-wifi svg { width: 54px; height: 54px; }
.icon-battery { display: inline-block; position: relative; width: 90px; height: 44px; border: 4px solid #FFFFFF; border-radius: 10px; }
.icon-battery::after { content: ""; position: absolute; right: -12px; top: 12px; width: 10px; height: 20px; background: #FFFFFF; border-radius: 3px; }
.icon-battery .level { position: absolute; left: 4px; top: 4px; height: 32px; width: 60px; background: #FFFFFF; border-radius: 6px; }
/* App bar */
.app-bar {
position: absolute; top: 120px; left: 0; width: 100%; height: 160px;
background: #121212; border-bottom: 1px solid #1F1F1F;
display: flex; align-items: center;
padding: 0 36px; box-sizing: border-box;
}
.back-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin-right: 16px; }
.title { font-size: 66px; font-weight: 600; }
/* Content */
.content {
position: absolute; top: 280px; left: 0; right: 0; bottom: 0;
padding: 30px 0;
}
.section-title {
font-size: 40px; color: #BDBDBD; letter-spacing: 2px;
margin: 36px 60px 8px;
text-transform: uppercase;
}
.list-item {
padding: 52px 60px;
display: flex; align-items: center; justify-content: space-between;
font-size: 56px; font-weight: 500;
}
.radio {
width: 60px; height: 60px; border-radius: 50%;
position: relative; box-sizing: border-box;
}
.radio.selected { border: 10px solid #FF8A65; }
.radio.selected::after {
content: ""; position: absolute; width: 22px; height: 22px;
background: #FF8A65; border-radius: 50%;
top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.radio.unselected { border: 8px solid #8E8E8E; opacity: 0.9; }
/* Bottom gesture pill */
.gesture {
position: absolute; bottom: 60px; left: 50%;
width: 440px; height: 14px; background: #EDEDED; border-radius: 10px;
transform: translateX(-50%);
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div class="status-time">8:45</div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div class="status-right">
<div class="icon-wifi">
<svg viewBox="0 0 24 24" fill="none">
<path d="M2 8c6-6 14-6 20 0" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M5 11c4.5-4.5 9.5-4.5 14 0" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M8 14c3-3 5-3 8 0" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="18" r="2" fill="#FFFFFF"/>
</svg>
</div>
<div class="icon-battery"><div class="level"></div></div>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="back-btn">
<svg width="60" height="60" viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="title">Display</div>
</div>
<!-- Content -->
<div class="content">
<div class="section-title">Dark theme</div>
<div class="list-item">
<div>Use System Default</div>
<div class="radio selected"></div>
</div>
<div class="list-item">
<div>Light</div>
<div class="radio unselected"></div>
</div>
<div class="list-item">
<div>Dark</div>
<div class="radio unselected"></div>
</div>
</div>
<!-- Bottom gesture pill -->
<div class="gesture"></div>
</div>
</body>
</html> |