Overview
Comment: | Heading is now indented below circled number. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | view |
Files: | files | file ages | folders |
SHA3-256: |
ccac0e97ebf6d9726ad6dc3b12b21e1a |
User & Date: | florian 2024-05-14 08:36:16 |
Context
2024-05-28
| ||
11:26 | Fixed stray heading indent outside course pages. check-in: 055b2c4bb3 user: florian tags: view | |
2024-05-14
| ||
08:41 | Merged changes from view. check-in: 2b25650da5 user: florian tags: beta | |
08:39 | Merged changes from view. check-in: d355f4b8f3 user: florian tags: fachgruppe | |
08:36 | Heading is now indented below circled number. check-in: ccac0e97eb user: florian tags: view | |
08:12 | Merged changes from database. check-in: ba8fd45fbf user: florian tags: view | |
Changes
Changes to luna_lms/webapp.py.
︙ | ︙ | |||
170 171 172 173 174 175 176 177 178 179 180 181 | margin: 0px ; display: table-cell ; vertical-align: bottom ; height: 5rem ; position: relative ; bottom: -0.56rem ; } header h1 span.heading_circle { font-family: 'Alata', sans-serif; font-size: 1.1rem ; display: inline-block ; | > > > > < < > | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | margin: 0px ; display: table-cell ; vertical-align: bottom ; height: 5rem ; position: relative ; bottom: -0.56rem ; } header div.circle_indent { margin-left: 3.5rem ; } header h1 span.heading_circle { font-family: 'Alata', sans-serif; font-size: 1.1rem ; display: inline-block ; border: solid var(--thin-border) var(--stroke-color); border-radius: 30px ; text-align: center ; padding: 0.35rem 0rem 0rem 0rem ; width: 2.5rem ; height: 2.5rem ; margin-right: 0.75rem ; margin-left: -3.6rem ; } .spacer { min-height: 1rem ; } h1, h2, h3, h4, h5, h6, em, strong { |
︙ | ︙ | |||
1238 1239 1240 1241 1242 1243 1244 | <a href="/"><img src="/static/{logo_file}" alt="Logo"></a> </div> <div class="w3-col luna-l1 luna-m1 spacer"> </div> <div class="w3-col luna-l5 luna-m5 half-col-pad-left"> | > | > | 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 | <a href="/"><img src="/static/{logo_file}" alt="Logo"></a> </div> <div class="w3-col luna-l1 luna-m1 spacer"> </div> <div class="w3-col luna-l5 luna-m5 half-col-pad-left"> <div class="circle_indent"> <h1>{heading}</h1> </div> </div> <div class="w3-col luna-l1 luna-m0 spacer"> </div> <div class="w3-col luna-l3 luna-m4" style="text-align:right;"> <div class="w3-tooltip header_login" aria-describedby="tooltip-login"> |
︙ | ︙ |