Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bielefeld-CeBiTec-Temp-until-thaw
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liliana Sanfilippo
Bielefeld-CeBiTec-Temp-until-thaw
Commits
19416ec2
Commit
19416ec2
authored
9 months ago
by
Liliana Sanfilippo
Browse files
Options
Downloads
Patches
Plain Diff
added program
parent
18e9774e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
static/style.css
+26
-0
26 additions, 0 deletions
static/style.css
wiki/pages/bfh.html
+65
-1
65 additions, 1 deletion
wiki/pages/bfh.html
with
91 additions
and
1 deletion
static/style.css
+
26
−
0
View file @
19416ec2
...
...
@@ -109,4 +109,30 @@ footer a:hover { color: white; text-decoration: underline; }
margin-bottom
:
20px
;
}
/*collapsible*/
/* Style the button that is used to open and close the collapsible content */
.collapsible
{
background-color
:
var
(
--yellow
);
color
:
#444
;
cursor
:
pointer
;
padding
:
18px
;
width
:
100%
;
border
:
none
;
text-align
:
left
;
outline
:
none
;
font-size
:
15px
;
margin
:
5px
;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active
,
.collapsible
:hover
{
background-color
:
var
(
--orange
);
}
/* Style the collapsible content. Note: hidden by default */
.content-laps
{
padding
:
18px
18px
;
display
:
none
;
overflow
:
hidden
;
background-color
:
var
(
--yellow
);
}
This diff is collapsed.
Click to expand it.
wiki/pages/bfh.html
+
65
−
1
View file @
19416ec2
...
...
@@ -41,7 +41,7 @@
<li>
<a
class=
"anchor sidebarEntry"
href=
"#collab"
>
The collaboration
</a>
</li>
<li>
<a
class=
"anchor sidebarEntry"
href=
"#program"
>
The program
</a>
</li>
<li>
<a
class=
"anchor sidebarEntry"
href=
"#impact"
>
Impact
</a>
</li>
<li>
<a
class=
"anchor sidebarEntry"
href=
"#
"
>
4
</a>
</li>
<li>
<a
class=
"anchor sidebarEntry"
href=
"#
gallery"
>
Photos
</a>
</li>
</ul>
</div>
</div>
...
...
@@ -63,6 +63,38 @@
</p>
<h3
id=
"program"
>
The program
</h3>
<hr>
<button
type=
"button"
class=
"collapsible"
>
Scientific Talk
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
Workshops
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
Team project presentation
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
Poser exhibition
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
Panel discussion
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
iGem TED Talks
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
Science Slam
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<button
type=
"button"
class=
"collapsible"
>
Award ceremony
</button>
<div
class=
"content-laps"
>
<p>
Lorem ipsum...
</p>
</div>
<p>
</p>
...
...
@@ -70,6 +102,11 @@
<hr>
<p>
</p>
<h3
id=
"gallery"
>
Photos
</h3>
<hr>
<p>
</p>
</div>
...
...
@@ -86,5 +123,32 @@
<!-- Bootstrap Bundle with Popper -->
<script
src=
"{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"
></script>
<!-- collapsible script-->
<script>
var
coll
=
document
.
getElementsByClassName
(
"
collapsible
"
);
var
i
;
for
(
i
=
0
;
i
<
coll
.
length
;
i
++
)
{
coll
[
i
].
addEventListener
(
"
click
"
,
function
()
{
this
.
classList
.
toggle
(
"
active
"
);
var
content
=
this
.
nextElementSibling
;
if
(
content
.
style
.
display
===
"
block
"
)
{
content
.
style
.
display
=
"
none
"
;
}
else
{
content
.
style
.
display
=
"
block
"
;
}
});
}
</script>
</body>
</html>
<!--
<button type="button" class="collapsible">Open Collapsible</button>
<div class="content-laps">
<p>Lorem ipsum...</p>
</div>
-->
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment