Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rafdulaf committed Jul 25, 2019
1 parent 007e4d3 commit 2f1f1b1
Show file tree
Hide file tree
Showing 141 changed files with 29,781 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Conan - Maps3</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# companion4conan
# Companion for conan
Companion application for Conan
2 changes: 2 additions & 0 deletions Robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Disallow: /
87 changes: 87 additions & 0 deletions about/resources/css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
.about-fullscreen:before {
content: "\f31e";
font-family: 'Font Awesome 5 Free';
}
.about-custom:before {
content: "\f49e";
font-family: 'Font Awesome 5 Free';
}
.about-preferences:before {
content: "\f3e0";
font-family: 'Font Awesome 5 Free';
}
.about-about:before {
content: "\f447";
font-family: 'Font Awesome 5 Free';
}

.about {
font-family: 'Moolbor';
font-size: 24px;
}

.about .about-zone-about img {
width: 100%;
}

.about a {
color: #c39f76;
text-decoration: none;
}
.about a:hover {
text-decoration: underline;
}


.about-copyright h1 {
margin-bottom: 0px;
font-size: 36px;
}


.custom fieldset {
border-width: 1px 0 0 0;
}
.custom fieldset select {
width: 100%;
border-width: 0 0 1px 0;
margin-bottom: 10px;
font-family: 'Moolbor';
font-size: 20px;
}
.custom fieldset legend {
font-size: 24px;
}
.custom fieldset label {
vertical-align: middle;
margin-left: 3px;
}

@media screen and (min-width: 600px) {
.custom fieldset {
vertical-align: top;
width: 48%;
float: left;
display: inline-block;
}
}

.reload {
position: fixed;
left: 50%;
transform: translateX(-50%);
border-top: 4px solid #DC7B00;
background-color: #fb8c00;
color: #FFFFFF;
box-shadow: 0 0 3px;
width: 80vW;
padding: 30px;
font-family: 'Moolbor';
font-size: 20px;
z-index: 100001;

transition-property: bottom opacity;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;

}
Binary file added about/resources/img/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
358 changes: 358 additions & 0 deletions about/resources/js/about.js

Large diffs are not rendered by default.

99 changes: 99 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">

<link rel="apple-touch-icon" sizes="180x180" href="resources/favico/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="resources/favico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="resources/favico/favicon-16x16.png">
<link rel="manifest" href="resources/favico/site.webmanifest">
<link rel="mask-icon" href="resources/favico/safari-pinned-tab.svg" color="#e64443">
<link rel="shortcut icon" href="resources/favico/favicon.ico">
<meta name="msapplication-TileColor" content="#e64443">
<meta name="msapplication-config" content="resources/favico/browserconfig.xml">
<meta name="theme-color" content="#e64443">


<link rel="stylesheet" href="vendors/css/fonts-1.0.0.css"/>
<link rel="stylesheet" href="vendors/css/slick-1.8.0.css"/>
<link rel="stylesheet" href="vendors/css/slick-theme-1.8.0.css"/>
<style>
.loading {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100000;
background-color: #e64443;
}
.loaded {
opacity: 0;
transition-property: opacity;
transition-duration: 0.5s;
transition-timing-function: linear;
pointer-events: none;
}
</style>
<script>
// Preferences
Language = localStorage.getItem("Language") || (navigator.language == 'fr' ? 'fr' : 'en');
Extensions = JSON.parse(localStorage.getItem("Extensions")) || {
'custom-box': 'king', 'stygie': true, 'nordheim': true, 'khitai': true
};
</script>

<script src="vendors/js/jquery-3.1.1.js"></script>
<script src="vendors/js/slick-1.8.0.js"></script>
<script>
jQuery.getScript("resources/js/utils.js").done(function() {
Promise.all([
Utils.load.css('resources/css/body.css'),

Utils.load.css('resources/css/menu.css'),
Utils.load.js('resources/js/menu.js'),

Utils.load.css('resources/css/nav.css'),
Utils.load.js('resources/js/nav.js'),

Utils.load.css('about/resources/css/about.css'),
Utils.load.js('about/resources/js/about.js'),

Utils.load.css('maps/resources/css/maps.css'),
Utils.load.js('maps/resources/js/maps.js'),

Utils.load.css('rules/resources/css/rules.css'),
Utils.load.js('rules/resources/js/rules.js')
]).then(function() {
Menu.initialize();

Nav.initialize();
ConanAbout.init();
ConanMaps.init();
ConanRules.init();
Nav.addIcon('Scenarios', 'story', 'story'); $("#story").html("In construction...");
Nav.addIcon('Studio', 'studio', 'studio'); $("#studio").html("In construction...");


Nav.switchTo($('.nav > ul > li > a')[0]);
$(".loading").addClass('loaded');
});
});
</script>
<body>
<div class="loading"></div>



<style>
.story:before {
font-family: "Font Awesome 5 Free";
content: "\f518";
}
.studio:before {
font-family: "Font Awesome 5 Free";
content: "\f591";
}
</style>
</body>
</html>
Binary file added maps/data/Abandoned_Fort/board.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2f1f1b1

Please sign in to comment.