Isolate kaehmy from other webapp
This commit is contained in:
@@ -0,0 +1,34 @@
|
|||||||
|
#footer-div {
|
||||||
|
height:10vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
/* position: absolute; */
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 60px; /* Set the fixed height of the footer here */
|
||||||
|
/* line-height: 60px; /* Vertically center the text there */ */
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer .container .col .nav .nav-item {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 3vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lang-button {
|
||||||
|
height: 4vh;
|
||||||
|
width: 6vh;
|
||||||
|
margin-left: 1vh;
|
||||||
|
margin-right: 1vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lang-select {
|
||||||
|
width: 10rem;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer .lang-form {
|
||||||
|
margin: 1rem auto 0;
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
.header-content {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-content .logo {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-content .logo img {
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.kaehmy-banner {
|
||||||
|
max-width: 1000px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1000px) {
|
||||||
|
.kaehmy_header-content {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
background-color: #052f5f;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.kaehmy_header {
|
||||||
|
margin-bottom: 331px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.kaehmy-banner-image {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
.page-content {
|
||||||
|
margin-top: 1vh;
|
||||||
|
width: 90%;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
max-width: 1000px;
|
||||||
|
margin-left: auto !important;
|
||||||
|
margin-right: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.tooltip-inner {
|
||||||
|
max-width: 25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip {
|
||||||
|
margin-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.role-filter-form {
|
||||||
|
max-width: 30rem;
|
||||||
|
width: auto;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
@@ -1,14 +1,50 @@
|
|||||||
{% extends "base.html" %}
|
<!DOCTYPE html>
|
||||||
|
|
||||||
{% load static %}
|
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
{% load staticfiles %}
|
||||||
|
|
||||||
{% block navigation %}
|
<html lang="en">
|
||||||
{% include "kaehmy_navigation.html" %}
|
<head>
|
||||||
{% endblock %}
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="Aalto-yliopiston Sähköinsinöörikilta ry">
|
||||||
|
<meta name="author" content="Aalto-yliopiston Sähköinsinöörikilta ry">
|
||||||
|
<link rel="stylesheet" href="/static/css/webapp_kaehmy.css">
|
||||||
|
<title>{% trans "Aalto-yliopiston Sähköinsinöörikilta ry" %}</title>
|
||||||
|
|
||||||
{% block header %}
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||||
<div class="kaehmy_header">
|
<script src="{% static "js/lib/jquery-3.1.0.min.js" %}"></script>
|
||||||
{% include "kaehmy_header.html" %}
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
|
||||||
</div>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||||
{% endblock header %}
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
|
||||||
|
<script src="{% static "js/lib/underscore-min.js" %}"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(function () {
|
||||||
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{% block header %}
|
||||||
|
<div class="kaehmy_header">
|
||||||
|
{% include "kaehmy_header.html" %}
|
||||||
|
</div>
|
||||||
|
{% endblock header %}
|
||||||
|
|
||||||
|
{% block navigation %}
|
||||||
|
{% include "kaehmy_navigation.html" %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
{% block footer %}
|
||||||
|
{% include "kaehmy_footer.html" %}
|
||||||
|
{% endblock footer %}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
{% load staticfiles %}
|
||||||
|
<link rel="stylesheet" href="/static/css/kaehmy_footer.css">
|
||||||
|
|
||||||
|
<footer style="text-align: center">
|
||||||
|
<div>
|
||||||
|
<form class="lang-form form" action="{% url 'set_language' %}" method="post">{% csrf_token %}
|
||||||
|
<span>
|
||||||
|
<input name="next" type="hidden" value="{{ redirect_to }}" />
|
||||||
|
<select onchange="this.form.submit()" class="lang-select form-control" name="language">
|
||||||
|
{% get_current_language as LANGUAGE_CODE %}
|
||||||
|
{% get_available_languages as LANGUAGES %}
|
||||||
|
{% get_language_info_list for LANGUAGES as languages %}
|
||||||
|
{% for language in languages %}
|
||||||
|
<option value="{{ language.code }}"{% if language.code == LANGUAGE_CODE %} selected="selected"{% endif %}>
|
||||||
|
{{ language.name_local }} ({{ language.code }})
|
||||||
|
</option>
|
||||||
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
</span>
|
||||||
|
</form>
|
||||||
|
<span>{% trans "Copyright Aalto-yliopiston Sähköinsinöörikilta ry" %} {% now 'Y' %}</span>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
<link rel="stylesheet" href="/static/css/sik_header.css">
|
<link rel="stylesheet" href="/static/css/kaehmy_header.css">
|
||||||
|
|
||||||
<div class="kaehmy_header-content">
|
<div class="kaehmy_header-content">
|
||||||
<div class="kaehmy-banner logo">
|
<div class="kaehmy-banner logo">
|
||||||
|
|||||||
Reference in New Issue
Block a user