-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b6bf086
Showing
131 changed files
with
5,113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Options +Includes |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
APC-V2 | ||
Version=3 | ||
C:\Users\Mark\Documents\projects\astrophotographycourses | ||
http:// | ||
|
||
|
||
13/06/2018 23:20:36 | ||
NO | ||
NO | ||
YES | ||
YES | ||
*.html;*.htm;*.vtm;*.vtml;*.asp;*.css;*.shtml;*.phtml;*.php;*.php3;*.xml;*.xsl;*.cfm;*.cfml;*.txt;*.pl;*.cgi;*.snp;*.js;*.vb;*.vbs;*.bas*.mid;*.wav;*.au;*.ra;*.ram;*.bmp;*.gif;*.jpg;*.jpeg;*.png;*.exe; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* When the user clicks on the button, | ||
toggle between hiding and showing the dropdown content */ | ||
function myFunction() { | ||
document.getElementById("myDropdown").classList.toggle("show"); | ||
} | ||
|
||
// Close the dropdown if the user clicks outside of it | ||
window.onclick = function(event) { | ||
if (!event.target.matches('.dropbtn')) { | ||
|
||
var dropdowns = document.getElementsByClassName("dropdown-content"); | ||
var i; | ||
for (i = 0; i < dropdowns.length; i++) { | ||
var openDropdown = dropdowns[i]; | ||
if (openDropdown.classList.contains('show')) { | ||
openDropdown.classList.remove('show'); | ||
} | ||
} | ||
} | ||
} | ||
|
||
function includeHTML() { | ||
var z, i, elmnt, file, xhttp; | ||
/*loop through a collection of all HTML elements:*/ | ||
z = document.getElementsByTagName("*"); | ||
for (i = 0; i < z.length; i++) { | ||
elmnt = z[i]; | ||
/*search for elements with a certain atrribute:*/ | ||
file = elmnt.getAttribute("w3-include-html"); | ||
if (file) { | ||
/*make an HTTP request using the attribute value as the file name:*/ | ||
xhttp = new XMLHttpRequest(); | ||
xhttp.onreadystatechange = function() { | ||
if (this.readyState == 4) { | ||
if (this.status == 200) {elmnt.innerHTML = this.responseText;} | ||
if (this.status == 404) {elmnt.innerHTML = "Page not found.";} | ||
/*remove the attribute, and call this function once more:*/ | ||
elmnt.removeAttribute("w3-include-html"); | ||
includeHTML(); | ||
} | ||
} | ||
xhttp.open("GET", file, true); | ||
xhttp.send(); | ||
/*exit the function:*/ | ||
return; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
.header { | ||
color: #087019; | ||
font-family: Arial, Helvetica, sans-serif, Trebuchet, MS; | ||
font-size: 26px; | ||
} | ||
|
||
.maintxt { | ||
color: #000000; | ||
font-family: Trebuchet, MS, Arial, Helvetica, sans-serif; | ||
font-size: 20px; | ||
} | ||
|
||
.maintxtsmall { | ||
color: #74120e; | ||
font-family: Trebuchet, MS, Arial, Helvetica, sans-serif; | ||
font-size: 14px; | ||
} | ||
|
||
.maintxt2 { | ||
color: #0033FF; | ||
font-family: Trebuchet, MS, Arial, Helvetica, sans-serif; | ||
font-size: 18px; | ||
} | ||
|
||
.container { | ||
position: relative; | ||
text-align: center; | ||
color: white; | ||
} | ||
|
||
.bottom-left { | ||
position: absolute; | ||
bottom: 8px; | ||
left: 16px; | ||
} | ||
|
||
.top-left { | ||
position: absolute; | ||
top: 8px; | ||
left: 16px; | ||
} | ||
|
||
.top-right { | ||
position: absolute; | ||
top: 8px; | ||
right: 16px; | ||
} | ||
|
||
.bottom-right { | ||
position: absolute; | ||
bottom: 8px; | ||
right: 16px; | ||
} | ||
|
||
.centered { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
#headertxt { | ||
font-size: 72px; | ||
} | ||
|
||
/* Dropdown Button */ | ||
.dropbtn { | ||
background-color: #3498DB; | ||
color: white; | ||
padding: 8px; | ||
font-size: 16px; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
|
||
/* Dropdown button on hover & focus */ | ||
.dropbtn:hover, .dropbtn:focus { | ||
background-color: #2980B9; | ||
} | ||
|
||
/* The container <div> - needed to position the dropdown content */ | ||
.dropdown { | ||
position: relative; | ||
display: inline-block; | ||
} | ||
|
||
/* Dropdown Content (Hidden by Default) */ | ||
.dropdown-content { | ||
display: none; | ||
position: absolute; | ||
background-color: #f1f1f1; | ||
min-width: 160px; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
/* Links inside the dropdown */ | ||
.dropdown-content a { | ||
color: black; | ||
padding: 4px 4px; | ||
font-family: Tahoma, Arial, Helvetica, sans-serif ; | ||
text-decoration: none; | ||
display: block; | ||
} | ||
|
||
/* Change color of dropdown links on hover */ | ||
.dropdown-content a:hover {background-color: #ddd} | ||
|
||
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */ | ||
.show {display:block;} | ||
|
||
|
||
/* menu line style for three-bar menu */ | ||
.menuline { | ||
width: 35px; | ||
height: 5px; | ||
background-color: black; | ||
margin: 6px 0; | ||
} | ||
|
||
.middlebkgrd { | ||
top: 0; | ||
background-image: url('images/APC_Middle_Bkgd.jpg'); | ||
/* background-color: rgba(255,255,255,0.4); | ||
background-blend-mode: lighten;*/ | ||
background-repeat: no-repeat; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* When the user clicks on the button, | ||
toggle between hiding and showing the dropdown content */ | ||
function myFunction() { | ||
document.getElementById("myDropdown").classList.toggle("show"); | ||
} | ||
|
||
// Close the dropdown if the user clicks outside of it | ||
window.onclick = function(event) { | ||
if (!event.target.matches('.dropbtn')) { | ||
|
||
var dropdowns = document.getElementsByClassName("dropdown-content"); | ||
var i; | ||
for (i = 0; i < dropdowns.length; i++) { | ||
var openDropdown = dropdowns[i]; | ||
if (openDropdown.classList.contains('show')) { | ||
openDropdown.classList.remove('show'); | ||
} | ||
} | ||
} | ||
} | ||
|
||
function includeHTML() { | ||
var z, i, elmnt, file, xhttp; | ||
/*loop through a collection of all HTML elements:*/ | ||
z = document.getElementsByTagName("*"); | ||
for (i = 0; i < z.length; i++) { | ||
elmnt = z[i]; | ||
/*search for elements with a certain atrribute:*/ | ||
file = elmnt.getAttribute("w3-include-html"); | ||
if (file) { | ||
/*make an HTTP request using the attribute value as the file name:*/ | ||
xhttp = new XMLHttpRequest(); | ||
xhttp.onreadystatechange = function() { | ||
if (this.readyState == 4) { | ||
if (this.status == 200) {elmnt.innerHTML = this.responseText;} | ||
if (this.status == 404) {elmnt.innerHTML = "Page not found.";} | ||
/*remove the attribute, and call this function once more:*/ | ||
elmnt.removeAttribute("w3-include-html"); | ||
includeHTML(); | ||
} | ||
} | ||
xhttp.open("GET", file, true); | ||
xhttp.send(); | ||
/*exit the function:*/ | ||
return; | ||
} | ||
} | ||
} |
Oops, something went wrong.