File size: 4,973 Bytes
98687c3 | 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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>New folder</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: #202124; /* dark background */
color: #E8EAED;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 120px;
padding: 0 32px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #E8EAED;
font-size: 40px;
letter-spacing: 0.5px;
}
.status-right {
display: flex; align-items: center; gap: 26px;
}
.icon { width: 40px; height: 40px; }
.battery {
display: flex; align-items: center; gap: 12px; font-size: 34px; color: #E8EAED;
}
.battery svg { width: 52px; height: 32px; }
/* App bar / title */
.app-bar {
position: absolute;
top: 120px;
left: 0;
width: 100%;
height: 140px;
display: flex;
align-items: center;
padding: 0 32px;
box-sizing: border-box;
gap: 22px;
}
.back-btn svg { width: 56px; height: 56px; fill: #E8EAED; }
.title { font-size: 64px; font-weight: 500; color: #E8EAED; }
/* Input */
.form-wrap {
position: absolute;
top: 360px;
left: 40px;
width: 1000px;
}
.input-field {
position: relative;
width: 1000px;
height: 180px;
border: 3px solid #8AB4F8;
border-radius: 22px;
box-sizing: border-box;
padding: 58px 36px 36px 36px;
color: #E8EAED;
}
.input-label {
position: absolute;
top: 14px;
left: 26px;
font-size: 38px;
color: #8AB4F8;
}
.caret {
position: absolute;
top: 98px;
left: 44px;
width: 2px;
height: 64px;
background: #8AB4F8;
border-radius: 2px;
}
/* Actions */
.actions {
position: absolute;
top: 610px;
left: 40px;
display: flex;
align-items: center;
gap: 26px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 16px;
padding: 24px 34px;
font-size: 44px;
border-radius: 18px;
border: none;
background: transparent;
cursor: default;
}
.btn-outline {
border: 3px solid #8AB4F8;
color: #8AB4F8;
}
.btn-outline svg { fill: #8AB4F8; width: 44px; height: 44px; }
.btn-disabled {
background: #3C4043;
color: #9AA0A6;
}
.btn-disabled svg { fill: #9AA0A6; width: 44px; height: 44px; }
/* Bottom gesture area */
.gesture-area {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 140px;
background: #000000;
display: flex;
align-items: center;
justify-content: center;
}
.gesture-pill {
width: 260px;
height: 14px;
background: #FFFFFF;
opacity: 0.9;
border-radius: 10px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">6:12</div>
<div class="status-right">
<!-- simple icons approximation -->
<svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#E8EAED"/></svg>
<svg class="icon" viewBox="0 0 24 24"><path d="M3 7h18l-4 10H7L3 7z" fill="#E8EAED"/></svg>
<svg class="icon" viewBox="0 0 24 24"><rect x="2" y="6" width="20" height="12" rx="2" fill="#E8EAED"/></svg>
<div class="battery">
<svg viewBox="0 0 36 18">
<rect x="1" y="3" width="30" height="12" rx="2" fill="none" stroke="#E8EAED" stroke-width="2"/>
<rect x="4" y="5" width="24" height="8" rx="1" fill="#E8EAED"/>
<rect x="32" y="6" width="3" height="6" rx="1" fill="#E8EAED"/>
</svg>
<span>100%</span>
</div>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="back-btn">
<svg viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" fill="none" stroke="#E8EAED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="title">New folder</div>
</div>
<!-- Input field -->
<div class="form-wrap">
<div class="input-field">
<div class="input-label">Folder name</div>
<div class="caret"></div>
</div>
</div>
<!-- Actions -->
<div class="actions">
<button class="btn btn-outline">
<svg viewBox="0 0 24 24"><path d="M18 6L6 18M6 6l12 12" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>
Cancel
</button>
<button class="btn btn-disabled">
<svg viewBox="0 0 24 24"><path d="M12 5v14M5 12h14" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>
Create
</button>
</div>
<!-- Bottom gesture bar -->
<div class="gesture-area">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html> |