File size: 7,336 Bytes
fa881a6 | 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 | <html>
<head>
<meta charset="UTF-8">
<title>Class 11 Physics (India) UI</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; }
#render-target {
width:1080px; height:2400px;
position:relative; overflow:hidden;
background:#ffffff;
border-radius:0;
box-shadow:none;
}
/* Top bars */
.top-bar {
position:absolute; left:0; top:0; width:100%;
height:220px; background:#0f2b57; color:#fff;
}
.status {
height:80px; display:flex; align-items:center; justify-content:space-between;
padding:0 36px; font-size:34px; letter-spacing:0.5px;
opacity:0.95;
}
.status .right-icons { display:flex; align-items:center; gap:26px; }
.app-bar {
height:140px; display:flex; align-items:center;
padding:0 36px; gap:24px;
}
.title { font-size:46px; font-weight:700; color:#fff; }
.back-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; }
.back-btn svg { width:44px; height:44px; fill:none; stroke:#fff; stroke-width:6; }
/* Content area */
.content {
position:absolute; left:0; top:220px; width:100%; height:2060px;
background:#ffffff;
overflow:hidden;
}
.section {
padding:30px 42px 12px 42px;
}
.section-header {
display:flex; align-items:center; gap:22px; margin-bottom:10px;
}
.icon-circle {
width:96px; height:96px; border-radius:50%; background:#69a36c; display:flex; align-items:center; justify-content:center;
}
.icon-circle svg { width:64px; height:64px; }
.section-title {
font-size:42px; font-weight:700; color:#222;
line-height:1.2;
}
.list { margin-top:18px; }
.list-item {
font-size:38px; color:#707070; line-height:72px;
}
.divider {
height:16px; background:#f0f0f0; margin:18px 0;
border-top:1px solid #e4e4e4; border-bottom:1px solid #e4e4e4;
}
/* Bottom navigation */
.bottom-nav {
position:absolute; left:0; bottom:0; width:100%; height:180px; background:#ffffff;
border-top:1px solid #e0e0e0;
display:flex; align-items:center; justify-content:space-around;
}
.nav-item { width:260px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:#7a7a7a; }
.nav-item svg { width:64px; height:64px; stroke:#888; fill:none; stroke-width:6; }
.nav-item.active { color:#0f2b57; }
.nav-item.active svg { stroke:#0f2b57; }
.gesture {
position:absolute; left:50%; transform:translateX(-50%);
bottom:200px; width:420px; height:16px; background:#d8d8d8; border-radius:8px; opacity:0.8;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top dark header -->
<div class="top-bar">
<div class="status">
<div>9:12</div>
<div class="right-icons">
<!-- simple wifi icon -->
<svg viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0" />
<path d="M5 12c3-2 11-2 14 0" />
<path d="M9 16c2-1 4-1 6 0" />
<circle cx="12" cy="20" r="1.6" fill="#fff"></circle>
</svg>
<!-- battery icon -->
<svg viewBox="0 0 32 20">
<rect x="2" y="4" width="24" height="12" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"></rect>
<rect x="4" y="6" width="18" height="8" fill="#fff"></rect>
<rect x="26" y="7" width="4" height="6" rx="1" ry="1" fill="#fff"></rect>
</svg>
</div>
</div>
<div class="app-bar">
<div class="back-btn">
<svg viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"/></svg>
</div>
<div class="title">Class 11 Physics (India)</div>
</div>
</div>
<!-- Scroll content -->
<div class="content">
<!-- Section 1 -->
<div class="section">
<div class="section-header">
<div class="icon-circle">
<!-- simple atom-like icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="2.5" fill="#e9f6ea"></circle>
<ellipse cx="12" cy="12" rx="9" ry="4.5" fill="none" stroke="#e9f6ea" stroke-width="2"></ellipse>
<ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(60 12 12)"></ellipse>
<ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(-60 12 12)"></ellipse>
</svg>
</div>
<div class="section-title">Basic math concepts for physics (Prerequisite)</div>
</div>
<div class="list">
<div class="list-item">The graphs of sine, cosine, and tangent</div>
<div class="list-item">Basic trigonometric identities</div>
<div class="list-item">Evaluating functions</div>
<div class="list-item">Inputs and outputs of a function</div>
<div class="list-item">Maximum and minimum points</div>
<div class="list-item">Intervals where a function is positive, negative,<br/>increasing, or decreasing</div>
<div class="list-item">Interpreting features of graphs</div>
</div>
</div>
<div class="divider"></div>
<!-- Section 2 -->
<div class="section">
<div class="section-header">
<div class="icon-circle">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="2.5" fill="#e9f6ea"></circle>
<ellipse cx="12" cy="12" rx="9" ry="4.5" fill="none" stroke="#e9f6ea" stroke-width="2"></ellipse>
<ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(60 12 12)"></ellipse>
<ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(-60 12 12)"></ellipse>
</svg>
</div>
<div class="section-title">Differentiation for physics (Prerequisite)</div>
</div>
<div class="list">
<div class="list-item">Slope</div>
<div class="list-item">Introduction to differential calculus</div>
<div class="list-item">Secant lines</div>
<div class="list-item">Limit basics</div>
<div class="list-item">Derivative as a limit</div>
<div class="list-item">Using the formal definition of derivative</div>
<div class="list-item">Derivative as a function</div>
<div class="list-item">Basic differentiation rules</div>
<div class="list-item">Power rule</div>
<div class="list-item">Polynomial functions differentiation</div>
<div class="list-item">Sine & cosine derivatives</div>
</div>
</div>
</div>
<!-- Gesture handle (small bar above nav) -->
<div class="gesture"></div>
<!-- Bottom navigation bar -->
<div class="bottom-nav">
<div class="nav-item active">
<svg viewBox="0 0 24 24"><path d="M3 10l9-7 9 7v10H6V10z"/><path d="M10 21V13h4v8" stroke="none" fill="none"/></svg>
<div>Home</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="6"></circle><line x1="17" y1="17" x2="22" y2="22" stroke-linecap="round"/></svg>
<div>Explore</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24"><path d="M6 3h12v18l-6-4-6 4z"/></svg>
<div>Bookmarks</div>
</div>
</div>
</div>
</body>
</html> |