Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Administrator
m4lab_landing_page
Commits
6e4e5a4f
Commit
6e4e5a4f
authored
5 years ago
by
Wolfgang Knopki
Browse files
Options
Download
Email Patches
Plain Diff
fixed padding hft contacts
parent
acb071be
Pipeline
#82
passed with stage
in 2 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
css/bootstrap.css
+9
-0
css/bootstrap.css
js/headfoot.js
+2
-1
js/headfoot.js
with
11 additions
and
1 deletion
+11
-1
css/bootstrap.css
+
9
-
0
View file @
6e4e5a4f
...
...
@@ -138,6 +138,15 @@ font-size: 2em;
padding-left
:
1em
;
padding-right
:
1em
;}
.contactrow
{
padding-left
:
15px
;
padding-right
:
5px
;
}
.contact-lower
{
display
:
inline-block
;
}
.footer-unten
a
{
color
:
darkgrey
;
}
.footer-unten
a
:hover
{
color
:
black
;
...
...
This diff is collapsed.
Click to expand it.
js/headfoot.js
+
2
-
1
View file @
6e4e5a4f
...
...
@@ -133,9 +133,10 @@ function foot(){
rowdiv
.
classList
.
add
(
"
row
"
);
for
(
let
i
=
0
;
i
<
hft_links
.
length
;
i
++
){
let
coldiv
=
document
.
createElement
(
'
div
'
);
coldiv
.
classList
.
add
(
"
co
l-md-3
"
,
"
footer-unten
"
);
coldiv
.
classList
.
add
(
"
co
ntactrow
"
,
"
footer-unten
"
);
let
collink
=
document
.
createElement
(
'
a
'
);
collink
.
innerHTML
=
hft_links
[
i
].
name
;
collink
.
classList
.
add
(
"
contact-lower
"
)
collink
.
href
=
hft_links
[
i
].
url
;
coldiv
.
appendChild
(
collink
)
rowdiv
.
appendChild
(
coldiv
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets