AndroidCode / code /10077 /10077_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html>
<head>
<meta charset="UTF-8">
<title>Class 11 Physics (India) - UI Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Top bars */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 80px;
background: #0F2342;
color: #fff;
display: flex;
align-items: center;
padding: 0 32px;
font-size: 36px;
letter-spacing: 0.5px;
}
.status-right {
margin-left: auto;
display: flex;
align-items: center;
gap: 26px;
}
.app-bar {
position: absolute;
top: 80px;
left: 0;
width: 1080px;
height: 160px;
background: #0F2342;
color: #fff;
display: flex;
align-items: center;
padding: 0 32px;
box-sizing: border-box;
}
.app-title {
font-weight: 700;
font-size: 56px;
margin-left: 22px;
}
/* Content area */
.content {
position: absolute;
top: 240px;
left: 0;
right: 0;
bottom: 200px;
overflow: hidden; /* static screen */
padding: 0 40px 0 40px;
box-sizing: border-box;
}
.section {
border-top: 1px solid #ECEFF1;
padding-top: 36px;
padding-bottom: 18px;
}
.heading {
display: flex;
align-items: center;
gap: 26px;
margin-bottom: 26px;
}
.atom-icon {
width: 96px;
height: 96px;
border-radius: 50%;
background: #67A56E;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.heading-title {
font-size: 50px;
font-weight: 700;
color: #111;
}
.subitem {
font-size: 40px;
color: #747D86;
padding: 18px 0;
border-bottom: 1px solid #F1F3F4;
}
/* Bottom navigation */
.bottom-nav {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 200px;
background: #FFFFFF;
border-top: 1px solid #E0E0E0;
display: flex;
}
.nav-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
color: #7A8088;
font-size: 34px;
}
.nav-item.active {
color: #1675FF;
font-weight: 600;
}
.icon {
width: 72px;
height: 72px;
}
/* Simple separators between groups */
.spacer-xxl { height: 14px; }
/* Thin gray scroll indicator at bottom center to mimic Android */
.gesture-bar {
position: absolute;
bottom: 20px;
left: 50%;
width: 500px;
height: 10px;
margin-left: -250px;
border-radius: 10px;
background: #D9D9D9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>9:09</div>
<div class="status-right">
<!-- Wi-Fi icon -->
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
<path d="M5 12c4-3 10-3 14 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
<path d="M8 16c3-2 5-2 8 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="19" r="1.8" fill="#fff"/>
</svg>
<!-- Battery icon -->
<svg class="icon" viewBox="0 0 26 24" fill="none">
<rect x="2" y="5" width="18" height="14" rx="2" stroke="#fff" stroke-width="2"/>
<rect x="22" y="9" width="3" height="6" rx="1" fill="#fff"/>
<rect x="4" y="7" width="14" height="10" rx="1" fill="#fff"/>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<!-- Back arrow -->
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M15 19L8 12l7-7" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="app-title">Class 11 Physics (India)</div>
</div>
<!-- Main content -->
<div class="content">
<!-- Section: Differentiation -->
<div class="section">
<div class="heading">
<div class="atom-icon">
<!-- simple atom-like lines -->
<svg viewBox="0 0 100 100" width="70" height="70">
<circle cx="50" cy="50" r="6" fill="#0F2342"/>
<ellipse cx="50" cy="50" rx="28" ry="12" fill="none" stroke="#0F2342" stroke-width="4"/>
<ellipse cx="50" cy="50" rx="12" ry="28" fill="none" stroke="#0F2342" stroke-width="4"/>
</svg>
</div>
<div class="heading-title">Differentiation for physics (Prerequisite)</div>
</div>
<div class="subitem">Basic differentiation rules</div>
<div class="subitem">Power rule</div>
<div class="subitem">Polynomial functions differentiation</div>
<div class="subitem">Sine &amp; cosine derivatives</div>
<div class="subitem">Product rule</div>
<div class="subitem" style="border-bottom: none;">Chain rule</div>
</div>
<!-- Section: Integration -->
<div class="section">
<div class="heading">
<div class="atom-icon">
<svg viewBox="0 0 100 100" width="70" height="70">
<circle cx="50" cy="50" r="6" fill="#0F2342"/>
<ellipse cx="50" cy="50" rx="28" ry="12" fill="none" stroke="#0F2342" stroke-width="4"/>
<ellipse cx="50" cy="50" rx="12" ry="28" fill="none" stroke="#0F2342" stroke-width="4"/>
</svg>
</div>
<div class="heading-title">Integration for physics (Prerequisite)</div>
</div>
<div class="subitem">Antiderivatives</div>
<div class="subitem">Indefinite integrals of common functions</div>
<div class="subitem">Definite integral as area</div>
<div class="subitem">Riemann sums</div>
<div class="subitem">Definite integral evaluation</div>
<div class="subitem">u-substitution</div>
<div class="subitem" style="border-bottom: none;">Area &amp; net change</div>
</div>
<!-- Section: Motion in a straight line -->
<div class="section">
<div class="heading">
<div class="atom-icon">
<svg viewBox="0 0 100 100" width="70" height="70">
<circle cx="50" cy="50" r="6" fill="#0F2342"/>
<ellipse cx="50" cy="50" rx="28" ry="12" fill="none" stroke="#0F2342" stroke-width="4"/>
<ellipse cx="50" cy="50" rx="12" ry="28" fill="none" stroke="#0F2342" stroke-width="4"/>
</svg>
</div>
<div class="heading-title">Motion in a straight line</div>
</div>
<div class="subitem">Distance, displacement, and coordinate systems</div>
<div class="subitem" style="border-bottom: none;">Average velocity and average speed</div>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item active">
<!-- Home hexagon icon -->
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M6 3l12 0 0 18-12 0z" opacity="0" />
<path d="M12 2l7 4v8l-7 4-7-4V6l7-4z" fill="#1675FF"/>
</svg>
<div>Home</div>
</div>
<div class="nav-item">
<!-- Explore / Search icon -->
<svg class="icon" viewBox="0 0 24 24" fill="none">
<circle cx="11" cy="11" r="6" stroke="#7A8088" stroke-width="2"/>
<path d="M16 16l5 5" stroke="#7A8088" stroke-width="2" stroke-linecap="round"/>
</svg>
<div>Explore</div>
</div>
<div class="nav-item">
<!-- Bookmark icon -->
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M6 3h12v18l-6-4-6 4V3z" stroke="#7A8088" stroke-width="2" fill="none"/>
</svg>
<div>Bookmarks</div>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html>