File size: 4,059 Bytes
0e1717f | 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 | <html>
<head>
<meta charset="UTF-8">
<title>Finding distance and displacement from graphs - Practice</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Arial, Helvetica, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #0D2143; /* deep navy */
color: #ffffff;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 36px;
box-sizing: border-box;
font-size: 32px;
letter-spacing: 0.5px;
opacity: 0.95;
}
.status-right {
display: flex;
gap: 24px;
align-items: center;
}
.icon {
width: 36px;
height: 36px;
}
/* Header and title */
.header {
position: absolute;
top: 110px;
left: 40px;
right: 40px;
}
.back-row {
display: flex;
align-items: center;
gap: 22px;
}
.back-btn {
width: 48px;
height: 48px;
}
.page-title {
margin-top: 18px;
max-width: 860px;
font-size: 48px;
line-height: 1.25;
font-weight: 700;
}
/* Main content */
.content {
position: absolute;
top: 460px;
left: 60px;
right: 60px;
}
.main-heading {
font-size: 72px;
font-weight: 800;
margin-bottom: 22px;
}
.subtext {
font-size: 36px;
color: #cfe1ff;
margin-bottom: 40px;
}
.meta {
font-size: 40px;
font-weight: 600;
}
/* Bottom button */
.cta {
position: absolute;
bottom: 220px;
left: 80px;
width: 920px;
height: 120px;
background: #ffffff;
color: #2F5BFF;
border-radius: 28px;
display: flex;
align-items: center;
justify-content: center;
font-size: 46px;
font-weight: 700;
box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
/* Decorative placeholders */
.shape-left, .shape-right {
position: absolute;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.shape-left {
width: 360px;
height: 360px;
left: 0;
bottom: 60px;
border-radius: 28px;
}
.shape-right {
width: 340px;
height: 340px;
right: 0;
bottom: 140px;
border-radius: 24px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">9:11</div>
<div class="status-right">
<!-- WiFi icon -->
<svg class="icon" viewBox="0 0 24 24">
<path fill="#ffffff" d="M12 18.5c.7 0 1.3.6 1.3 1.3s-.6 1.3-1.3 1.3-1.3-.6-1.3-1.3.6-1.3 1.3-1.3zm-4.5-3.9c2.5-2.3 6.5-2.3 9 0l1.1-1.2c-3.2-2.9-8-2.9-11.2 0l1.1 1.2zm-3.2-3.4c4-3.7 10.4-3.7 14.4 0l1.2-1.4C15.7 5.6 8.3 5.6 3.1 9.8l1.2 1.4z"/>
</svg>
<!-- Battery icon -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="3" y="7" width="16" height="10" rx="2" fill="#ffffff"/>
<rect x="19.5" y="10" width="2.5" height="4" rx="1" fill="#ffffff"/>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="back-row">
<svg class="back-btn" viewBox="0 0 24 24">
<path fill="#ffffff" d="M15.5 4.5L7 12l8.5 7.5-1.5 2L3.5 12 14 2.5l1.5 2z"/>
</svg>
<div style="font-size:32px; color:#cfe1ff;">Back</div>
</div>
<div class="page-title">Finding distance and displacement from graphs</div>
</div>
<!-- Main content -->
<div class="content">
<div class="main-heading">Ready to practice?</div>
<div class="subtext">Okay, show us what you can do!</div>
<div class="meta">4 questions</div>
</div>
<!-- Decorative placeholders (bottom friendly shapes) -->
<div class="shape-left">[IMG: Friendly shape illustration]</div>
<div class="shape-right">[IMG: Friendly shape illustration]</div>
<!-- CTA Button -->
<div class="cta">Let's go</div>
</div>
</body>
</html> |