diff --git a/app/assets/images/eu_flag.png b/app/assets/images/eu_flag.png new file mode 100644 index 00000000..38eec404 Binary files /dev/null and b/app/assets/images/eu_flag.png differ diff --git a/app/assets/images/fb.svg b/app/assets/images/fb.svg new file mode 100644 index 00000000..564fc971 --- /dev/null +++ b/app/assets/images/fb.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/app/assets/images/iaac.png b/app/assets/images/iaac.png new file mode 100644 index 00000000..e527cb96 Binary files /dev/null and b/app/assets/images/iaac.png differ diff --git a/app/assets/images/in.svg b/app/assets/images/in.svg new file mode 100644 index 00000000..72168d57 --- /dev/null +++ b/app/assets/images/in.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/app/assets/images/logo_fablab_bcn_small.png b/app/assets/images/logo_fablab_bcn_small.png new file mode 100644 index 00000000..91dd7489 Binary files /dev/null and b/app/assets/images/logo_fablab_bcn_small.png differ diff --git a/app/assets/images/smartcitizen_logo2.svg b/app/assets/images/smartcitizen_logo2.svg new file mode 100644 index 00000000..34962e80 --- /dev/null +++ b/app/assets/images/smartcitizen_logo2.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + diff --git a/app/assets/images/tw.svg b/app/assets/images/tw.svg new file mode 100644 index 00000000..13e1b1f8 --- /dev/null +++ b/app/assets/images/tw.svg @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index d97f1754..ba7af2b9 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -18,4 +18,5 @@ @import "rails_bootstrap_forms.css"; @import "global"; @import "nav"; +@import "footer"; diff --git a/app/assets/stylesheets/footer.scss b/app/assets/stylesheets/footer.scss new file mode 100644 index 00000000..d88d0883 --- /dev/null +++ b/app/assets/stylesheets/footer.scss @@ -0,0 +1,13 @@ +footer { + width: 100%; + a { + color: $primary; + &:hover { + text-decoration: none; + } + } + + .outlined-box { + border: 2px solid $white; + } +} diff --git a/app/assets/stylesheets/global.scss b/app/assets/stylesheets/global.scss index 2bd8d50d..fb144e3d 100644 --- a/app/assets/stylesheets/global.scss +++ b/app/assets/stylesheets/global.scss @@ -53,3 +53,6 @@ body{ margin-left: 1.5rem; } +.width-fit-content { + width: fit-content !important; +} diff --git a/app/views/layouts/_footer.html.erb b/app/views/layouts/_footer.html.erb new file mode 100644 index 00000000..ac79c821 --- /dev/null +++ b/app/views/layouts/_footer.html.erb @@ -0,0 +1,47 @@ + diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index fe8aea78..20400c67 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -21,5 +21,6 @@ <%= yield %> + <%= render partial: "layouts/footer" %>