File size: 6,557 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)</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:#ffffff;
}
/* Top bars */
.status-bar{
position:absolute; left:0; top:0; width:100%; height:90px;
background:#0d2a55; color:#fff;
display:flex; align-items:center; padding:0 40px; box-sizing:border-box;
font-size:34px; letter-spacing:0.5px;
}
.status-right{ margin-left:auto; display:flex; align-items:center; gap:26px; }
.app-bar{
position:absolute; left:0; top:90px; width:100%; height:160px;
background:#0d2a55; color:#fff;
display:flex; align-items:center; gap:24px;
padding:0 32px; box-sizing:border-box;
box-shadow: 0 2px 0 rgba(0,0,0,0.1) inset;
}
.title{ font-size:46px; font-weight:700; }
.back-btn{
width:72px; height:72px; display:flex; align-items:center; justify-content:center;
}
/* Content area */
.content{
position:absolute; left:0; top:250px; width:100%; height:1950px;
overflow:auto; -webkit-overflow-scrolling: touch;
background:#ffffff;
}
.section{ padding:36px 40px 18px 40px; }
.section-header{
display:flex; align-items:center; gap:26px; margin-bottom:18px;
}
.icon-circle{
width:92px; height:92px; border-radius:50%;
background:#6abf86; display:flex; align-items:center; justify-content:center;
position:relative; color:#eaffef; font-size:28px; font-weight:700;
box-shadow: inset 0 0 0 6px rgba(255,255,255,0.35);
}
/* Simple atom-like cross */
.icon-circle::before, .icon-circle::after{
content:""; position:absolute; width:64px; height:4px; background:#ffffff;
}
.icon-circle::after{ transform:rotate(90deg); }
.section-title{
font-size:44px; font-weight:700; color:#1f2b3a;
}
.list{ padding-left:118px; }
.list .item{
font-size:38px; color:#7a7a7a; padding:18px 0;
border-bottom:1px solid #f0f0f0;
}
.divider{
height:14px; background:#f4f6f8; margin:8px 0 0 0;
border-top:1px solid #e9edf1; border-bottom:1px solid #e9edf1;
}
/* Bottom navigation */
.bottom-nav{
position:absolute; left:0; bottom:0; width:100%; height:200px;
background:#ffffff; border-top:1px solid #e6e6e6;
display:flex; align-items:center; justify-content:space-around;
}
.tab{ width:33.33%; display:flex; flex-direction:column; align-items:center; gap:10px; }
.tab span{ font-size:34px; color:#8c8c8c; }
.tab.active span{ color:#1f78ff; font-weight:600; }
.icon{
width:70px; height:70px; color:#8c8c8c;
}
.active .icon{ color:#1f78ff; }
/* Utility */
.sr{ position:absolute; right:0; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
9:10
<div class="status-right">
<!-- Simple Wi-Fi icon -->
<svg class="icon" viewBox="0 0 24 24" width="48" height="48">
<path fill="#ffffff" d="M12 20.5l2.1-2.1a3 3 0 0 0-4.2 0L12 20.5zm-5-5l1.6 1.6a6 6 0 0 1 6.8 0L17 15.5a8 8 0 0 0-10 0zM2.5 10l1.7 1.7a12 12 0 0 1 15.6 0L21.5 10a14 14 0 0 0-19 0z"/>
</svg>
<!-- Battery icon -->
<svg viewBox="0 0 28 14" width="60" height="36">
<rect x="1" y="2" width="22" height="10" fill="none" stroke="#ffffff" stroke-width="2"></rect>
<rect x="24" y="5" width="3" height="4" fill="#ffffff"></rect>
<rect x="3" y="4" width="16" height="6" fill="#ffffff"></rect>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="back-btn">
<svg viewBox="0 0 24 24" width="64" height="64">
<path fill="#ffffff" d="M15.5 4l-8 8 8 8 2.1-2.1L11.7 12l5.9-5.9L15.5 4z"></path>
</svg>
</div>
<div class="title">Class 11 Physics (India)</div>
</div>
<!-- Content -->
<div class="content">
<!-- Section 1 -->
<div class="section">
<div class="section-header">
<div class="icon-circle"></div>
<div class="section-title">Differentiation for physics (Prerequisite)</div>
</div>
<div class="list">
<div class="item">Basic differentiation rules</div>
<div class="item">Power rule</div>
<div class="item">Polynomial functions differentiation</div>
<div class="item">Sine & cosine derivatives</div>
<div class="item">Product rule</div>
<div class="item" style="border-bottom:none;">Chain rule</div>
</div>
</div>
<div class="divider"></div>
<!-- Section 2 -->
<div class="section">
<div class="section-header">
<div class="icon-circle"></div>
<div class="section-title">Integration for physics (Prerequisite)</div>
</div>
<div class="list">
<div class="item">Antiderivatives</div>
<div class="item">Indefinite integrals of common functions</div>
<div class="item">Definite integral as area</div>
<div class="item">Riemann sums</div>
<div class="item">Definite integral evaluation</div>
<div class="item">u-substitution</div>
<div class="item" style="border-bottom:none;">Area & net change</div>
</div>
</div>
<div class="divider"></div>
<!-- Section 3 -->
<div class="section" style="padding-bottom:120px;">
<div class="section-header">
<div class="icon-circle"></div>
<div class="section-title">Motion in a straight line</div>
</div>
<div class="list">
<div class="item">Distance, displacement, and coordinate systems</div>
<div class="item" style="border-bottom:none;">Average velocity and average speed</div>
</div>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="tab active">
<!-- Home icon (hex-like) -->
<svg class="icon" viewBox="0 0 24 24">
<path fill="currentColor" d="M12 3l7 4v10l-7 4-7-4V7l7-4zm-3 6v6l3 1.7L15 15V9l-3-1.7L9 9z"></path>
</svg>
<span>Home</span>
</div>
<div class="tab">
<svg class="icon" viewBox="0 0 24 24">
<path fill="currentColor" d="M10 18a8 8 0 1 1 5.3-13.9l4.8 4.8-1.9 1.9-4.4-4.4A6 6 0 1 0 10 16v2z"></path>
</svg>
<span>Explore</span>
</div>
<div class="tab">
<svg class="icon" viewBox="0 0 24 24">
<path fill="currentColor" d="M6 3h12a2 2 0 0 1 2 2v14l-8-3-8 3V5a2 2 0 0 1 2-2z"></path>
</svg>
<span>Bookmarks</span>
</div>
</div>
</div>
</body>
</html> |