Fix message dialog (js) + add header menu
parent
ba09c131c0
commit
21b93880c8
@ -1,30 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap";
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: Gabriola;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
src: local('Gabriola'), url('/build/static/fonts/gabriola.woff') format('woff');
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: BlackChancery;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
src: local('BlackChancery'), url('/build/static/fonts/black_chancery.ttf') format('truetype');
|
|
||||||
}
|
|
||||||
|
|
||||||
#messages {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: Gabriola, sans-serif;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
margin : 120px 5px 0 5px;
|
|
||||||
}
|
|
||||||
.ui-widget {
|
|
||||||
font-family: Gabriola, sans-serif;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@import "header";
|
|
@ -0,0 +1,12 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: Gabriola;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Gabriola'), url('/build/static/fonts/gabriola.woff') format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: BlackChancery;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('BlackChancery'), url('/build/static/fonts/black_chancery.ttf') format('truetype');
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
#messages {
|
||||||
|
display: none;
|
||||||
|
}
|
@ -1,13 +0,0 @@
|
|||||||
header {
|
|
||||||
position : fixed;
|
|
||||||
top : 0;
|
|
||||||
left : 0;
|
|
||||||
width : 100%;
|
|
||||||
background : rgba(255, 255, 255, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
#logo {
|
|
||||||
font-family : BlackChancery, sans-serif;
|
|
||||||
font-size : 3em;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
@ -0,0 +1,20 @@
|
|||||||
|
header {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
background: rgba(255, 255, 255, 1);
|
||||||
|
padding: 5px 10px 0 10px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
font-family: BlackChancery, sans-serif;
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
%font {
|
||||||
|
font-family: Gabriola, sans-serif;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
@extend %font;
|
||||||
|
margin: 80px 5px 0 5px; // Vertical translation for the fixed header
|
||||||
|
}
|
||||||
|
.ui-widget {
|
||||||
|
@extend %font;
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
@import "~bootstrap/scss/bootstrap";
|
||||||
|
|
||||||
|
@import "base/fonts";
|
||||||
|
|
||||||
|
@import "components/messages";
|
||||||
|
|
||||||
|
@import "layouts/page";
|
||||||
|
@import "layouts/header";
|
@ -0,0 +1,6 @@
|
|||||||
|
require('bootstrap/dist/js/bootstrap.bundle.min');
|
||||||
|
|
||||||
|
require('@fortawesome/fontawesome-free/css/all.min.css');
|
||||||
|
|
||||||
|
require('../css/main.scss');
|
||||||
|
require('../js/messages.js');
|
@ -1,7 +1,6 @@
|
|||||||
require('../css/app.scss');
|
|
||||||
|
|
||||||
const $ = require('jquery');
|
const $ = require('jquery');
|
||||||
require('jquery-ui');
|
require('jquery-ui-css/all.css');
|
||||||
|
require('jquery-ui/dialog');
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
/* Messages */
|
/* Messages */
|
Loading…
Reference in New Issue