Skip to content

Commit

Permalink
Program draft v2
Browse files Browse the repository at this point in the history
  • Loading branch information
tzerefos committed Jun 9, 2024
1 parent 74dc31b commit 1d4d8ae
Show file tree
Hide file tree
Showing 5 changed files with 623 additions and 162 deletions.
17 changes: 12 additions & 5 deletions hdms/2024/assets/css/main_newest.css
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@
}

.inner {
max-width: 75em;
max-width: 80em;
margin: 0 auto;
}

Expand Down Expand Up @@ -2506,6 +2506,10 @@
padding: 0.75em 0.75em;
}

table td:first-child {
width: 10% ;
}

table th {
color: #555;
font-size: 0.9em;
Expand Down Expand Up @@ -3792,14 +3796,17 @@ overflow-x:auto;
}

.program-session-titles{
font-size: 1.2em;
font-size: 0.9em;
/* text-align: left; */
}
.program-sessions{
font-size: 1em;
font-size: 0.9em;
text-align: left;
}
.program-session-breaks{
font-size: 1.2em;
color: red;
font-size: 0.9em;
/* text-align: left; */
/* color: red; */
font-weight: 700;
}

Expand Down
7 changes: 7 additions & 0 deletions hdms/2024/assets/css/program.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.paper-abstract{
display: none;
}

.toggle-abstract{
cursor: pointer;
}
11 changes: 11 additions & 0 deletions hdms/2024/assets/js/program.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Javascript file that handles program.html functions

function toggleAbstract(abstract) {
// Function that toggles upon click the abstract on the program section
var element = document.getElementById(abstract);
if (element.style.display !== "block" ) {
element.style.display = "block";
} else {
element.style.display = "none";
}
}
4 changes: 2 additions & 2 deletions hdms/2024/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1122,8 +1122,8 @@ <h3>Fusce pellentesque tempus</h3>
<td rowspan = "5" style="border-right: 2px solid #015CAB; text-align:center; color:#015CAB; width:50%; vertical-align : middle;">Sponsors</td>

<td><div class="12u 12u$(medium)">
TBD
<!-- <a href="http://inoshellas.inos-automation.de/" target="_blank"><img src="images/inos_logo.png" alt="Inos" width="100%" style="max-width: 100%"/></a> -->
<!-- TBD -->
<a href="#" target="_blank"><img src="images/huwaei.jpg" alt="Inos" width="100%" style="max-width: 100%"/></a>
</div></td>
</tr>

Expand Down
Loading

0 comments on commit 1d4d8ae

Please sign in to comment.