File size: 4,015 Bytes
c32f9a6 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Globalisation Note</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #23170F; /* deep brown */
font-family: Arial, Helvetica, sans-serif;
color: #E9D8C8; /* light beige for UI elements */
}
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 110px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #E9D8C8;
font-size: 40px;
letter-spacing: 0.5px;
}
.status-icons {
display: flex;
align-items: center;
gap: 28px;
}
.app-bar {
position: absolute;
top: 110px;
left: 0;
width: 1080px;
height: 150px;
display: flex;
align-items: center;
padding: 0 32px;
gap: 24px;
}
.title {
font-size: 64px;
font-weight: 600;
color: #E9D8C8;
flex: 1;
}
.app-actions {
display: flex;
align-items: center;
gap: 34px;
}
.icon-btn svg {
width: 60px;
height: 60px;
fill: none;
stroke: #DCC7B4;
stroke-width: 7;
stroke-linecap: round;
stroke-linejoin: round;
}
.icon-dots {
width: 14px;
height: 14px;
background: #DCC7B4;
border-radius: 50%;
box-shadow: 0 44px 0 0 #DCC7B4, 0 88px 0 0 #DCC7B4;
margin-right: 12px;
}
.content-card {
position: absolute;
left: 30px;
width: 1020px;
top: 780px;
background: #FFFFFF;
border-radius: 6px;
box-shadow: 0 2px 0 rgba(0,0,0,0.18);
padding: 140px 80px;
color: #111111;
}
.card-text {
font-size: 72px;
text-align: center;
font-weight: 500;
}
.fab {
position: absolute;
right: 68px;
bottom: 210px;
width: 160px;
height: 160px;
background: #7A4A18;
border-radius: 40px;
box-shadow: 0 8px 22px rgba(0,0,0,0.45);
display: flex;
align-items: center;
justify-content: center;
}
.fab svg {
width: 80px;
height: 80px;
fill: none;
stroke: #F1DDCD;
stroke-width: 7;
stroke-linecap: round;
stroke-linejoin: round;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>9:13</div>
<div class="status-icons">
<!-- simple triangular network and battery icons -->
<svg width="46" height="46" viewBox="0 0 24 24">
<path d="M3 17l9-12 9 12H3Z" fill="#E9D8C8"></path>
</svg>
<svg width="46" height="46" viewBox="0 0 24 24">
<rect x="3" y="7" width="16" height="10" rx="2" ry="2" fill="none" stroke="#E9D8C8" stroke-width="2"></rect>
<rect x="5" y="9" width="12" height="6" fill="#E9D8C8"></rect>
<rect x="20" y="10" width="2" height="4" fill="#E9D8C8"></rect>
</svg>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="icon-btn">
<svg viewBox="0 0 24 24">
<path d="M15 6l-6 6 6 6"></path>
</svg>
</div>
<div class="title">Globalisation</div>
<div class="app-actions">
<div class="icon-btn">
<!-- chat bubble -->
<svg viewBox="0 0 24 24">
<path d="M4 5h16v11H9l-5 4V5z"></path>
</svg>
</div>
<div class="icon-btn">
<!-- search -->
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6"></circle>
<path d="M20 20l-4.5-4.5"></path>
</svg>
</div>
<div class="icon-dots"></div>
</div>
</div>
<!-- Content Card -->
<div class="content-card">
<div class="card-text">How to read MRZ?</div>
</div>
<!-- Floating Action Button -->
<div class="fab">
<svg viewBox="0 0 24 24">
<rect x="5" y="3" width="12" height="18" rx="2"></rect>
<path d="M9 7h4M9 11h6M9 15h6"></path>
</svg>
</div>
</div>
</body>
</html> |