Skip to content

Commit d1fade3

Browse files
committed
Initial draft of the new ScalaFX website.
1 parent 226aaef commit d1fade3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+3720
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

README.md

100644100755
+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
Future home of the ScalaFX home page source code.
2+
3+
Build with [Jekyll](http://jekyllrb.com/).
4+
5+
Based on [Jekyll site code](https://github.com/jekyll/jekyll).

_config.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Site settings
2+
title: ScalaFX
3+
4+
description: "ScalaFX - a simpler way of using JavaFX in Scala."
5+
baseurl: ""
6+
# url: "http://scalafx.org"
7+
repository: https://github.com/scalafx/scalafx
8+
9+
# Build settings
10+
markdown: kramdown
11+
permalink: pretty

_data/docs.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- title: Getting Started
2+
docs:
3+
- home
4+
- quickstart
5+
- installation
6+
- usage
7+
8+
- title: Meta
9+
docs:
10+
- contributing
11+
- history

_includes/anchor_links.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<script>
2+
var anchorForId = function (id) {
3+
var anchor = document.createElement("a");
4+
anchor.className = "header-link";
5+
anchor.href = "#" + id;
6+
anchor.innerHTML = "<i class=\"fa fa-link\"></i>";
7+
return anchor;
8+
};
9+
10+
var linkifyAnchors = function (level, containingElement) {
11+
var headers = containingElement.getElementsByTagName("h" + level);
12+
for (var h = 0; h < headers.length; h++) {
13+
var header = headers[h];
14+
15+
if (typeof header.id !== "undefined" && header.id !== "") {
16+
header.appendChild(anchorForId(header.id));
17+
}
18+
}
19+
};
20+
21+
document.onreadystatechange = function () {
22+
if (this.readyState === "complete") {
23+
var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
24+
if (!contentBlock) {
25+
return;
26+
}
27+
for (var level = 1; level <= 6; level++) {
28+
linkifyAnchors(level, contentBlock);
29+
}
30+
}
31+
};
32+
</script>

_includes/css/font-awesome.css

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*!
2+
* Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
3+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4+
*/
5+
@font-face {
6+
font-family: 'FontAwesome';
7+
src: url('../fonts/fontawesome-webfont.eot?v=4.1.0');
8+
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
9+
font-weight: normal;
10+
font-style: normal;
11+
}
12+
.fa {
13+
display: inline-block;
14+
font-family: FontAwesome;
15+
font-style: normal;
16+
font-weight: normal;
17+
line-height: 1;
18+
-webkit-font-smoothing: antialiased;
19+
-moz-osx-font-smoothing: grayscale;
20+
}
21+
.fa-link:before {
22+
content: "\f0c1";
23+
}
24+
/*
25+
* This code is courtesy Ben Balter, modified by Parker Moore for jekyllrb.com
26+
* http://ben.balter.com/2014/03/13/pages-anchor-links/
27+
*/
28+
.header-link {
29+
position: relative;
30+
left: 0.5em;
31+
opacity: 0;
32+
font-size: 0.8em;
33+
34+
-webkit-transition: opacity 0.2s ease-in-out 0.1s;
35+
-moz-transition: opacity 0.2s ease-in-out 0.1s;
36+
-ms-transition: opacity 0.2s ease-in-out 0.1s;
37+
}
38+
h2:hover .header-link,
39+
h3:hover .header-link,
40+
h4:hover .header-link,
41+
h5:hover .header-link,
42+
h6:hover .header-link {
43+
opacity: 1;
44+
}

_includes/css/gridism.css

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
/*
2+
* Gridism
3+
* A simple, responsive, and handy CSS grid by @cobyism
4+
* https://github.com/cobyism/gridism
5+
*/
6+
7+
/* Preserve some sanity */
8+
.grid,
9+
.unit {
10+
-webkit-box-sizing: border-box;
11+
-moz-box-sizing: border-box;
12+
box-sizing: border-box;
13+
}
14+
15+
/* Set up some rules to govern the grid */
16+
.grid {
17+
display: block;
18+
clear: both;
19+
}
20+
.grid .unit {
21+
float: left;
22+
width: 100%;
23+
padding: 10px;
24+
}
25+
26+
/* This ensures the outer gutters are equal to the (doubled) inner gutters. */
27+
.grid .unit:first-child { padding-left: 20px; }
28+
.grid .unit:last-child { padding-right: 20px; }
29+
30+
/* Nested grids already have padding though, so let’s nuke it */
31+
.unit .unit:first-child { padding-left: 0; }
32+
.unit .unit:last-child { padding-right: 0; }
33+
.unit .grid:first-child > .unit { padding-top: 0; }
34+
.unit .grid:last-child > .unit { padding-bottom: 0; }
35+
36+
/* Let people nuke the gutters/padding completely in a couple of ways */
37+
.no-gutters .unit,
38+
.unit.no-gutters {
39+
padding: 0 !important;
40+
}
41+
42+
/* Wrapping at a maximum width is optional */
43+
.wrap .grid,
44+
.grid.wrap {
45+
max-width: 978px;
46+
margin: 0 auto;
47+
}
48+
49+
/* Width classes also have shorthand versions numbered as fractions
50+
* For example: for a grid unit 1/3 (one third) of the parent width,
51+
* simply apply class="w-1-3" to the element. */
52+
.grid .whole, .grid .w-1-1 { width: 100%; }
53+
.grid .half, .grid .w-1-2 { width: 50%; }
54+
.grid .one-third, .grid .w-1-3 { width: 33.3332%; }
55+
.grid .two-thirds, .grid .w-2-3 { width: 66.6665%; }
56+
.grid .one-quarter, .grid .w-1-4 { width: 25%; }
57+
.grid .three-quarters, .grid .w-3-4 { width: 75%; }
58+
.grid .one-fifth, .grid .w-1-5 { width: 20%; }
59+
.grid .two-fifths, .grid .w-2-5 { width: 40%; }
60+
.grid .three-fifths, .grid .w-3-5 { width: 60%; }
61+
.grid .four-fifths, .grid .w-4-5 { width: 80%; }
62+
.grid .golden-small, .grid .w-g-s { width: 38.2716%; } /* Golden section: smaller piece */
63+
.grid .golden-large, .grid .w-g-l { width: 61.7283%; } /* Golden section: larger piece */
64+
65+
/* Utility classes */
66+
.align-center { text-align: center; }
67+
.align-left { text-align: left; }
68+
.align-right { text-align: right; }
69+
.pull-left { float: left; }
70+
.pull-right { float: right; }
71+
72+
.show-on-mobiles {
73+
display: none;
74+
}
75+
76+
/* Responsive Stuff */
77+
@media screen and (max-width: 568px) {
78+
/* Stack anything that isn’t full-width on smaller screens */
79+
.grid .unit {
80+
width: 100% !important;
81+
padding-left: 20px;
82+
padding-right: 20px;
83+
}
84+
.unit .grid .unit {
85+
padding-left: 0px;
86+
padding-right: 0px;
87+
}
88+
89+
/* Sometimes, you just want to be different on small screens */
90+
.center-on-mobiles {
91+
text-align: center !important;
92+
}
93+
.hide-on-mobiles {
94+
display: none !important;
95+
}
96+
.show-on-mobiles {
97+
display: block !important;
98+
}
99+
a .show-on-mobiles {
100+
display: inline !important;
101+
}
102+
}
103+
104+
/* Expand the wrap a bit further on larger screens */
105+
/*@media screen and (min-width: 1180px) {
106+
.wrap .grid {
107+
max-width: 1180px;
108+
margin: 0 auto;
109+
}
110+
}*/

_includes/css/normalize.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_includes/css/pygments.css

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*.highlight { background: #333333; color: #ffffff}*/
2+
.highlight .hll { background-color: #ffffcc }
3+
.highlight .c { color: #87ceeb} /* Comment */
4+
.highlight .err { color: #ffffff} /* Error */
5+
.highlight .g { color: #ffffff} /* Generic */
6+
.highlight .k { color: #f0e68c} /* Keyword */
7+
.highlight .l { color: #ffffff} /* Literal */
8+
.highlight .n { color: #ffffff} /* Name */
9+
.highlight .o { color: #ffffff} /* Operator */
10+
.highlight .x { color: #ffffff} /* Other */
11+
.highlight .p { color: #ffffff} /* Punctuation */
12+
.highlight .cm { color: #87ceeb} /* Comment.Multiline */
13+
.highlight .cp { color: #cd5c5c} /* Comment.Preproc */
14+
.highlight .c1 { color: #87ceeb} /* Comment.Single */
15+
.highlight .cs { color: #87ceeb} /* Comment.Special */
16+
.highlight .gd { color: #0000c0; font-weight: bold; background-color: #008080 } /* Generic.Deleted */
17+
.highlight .ge { color: #c000c0; text-decoration: underline} /* Generic.Emph */
18+
.highlight .gr { color: #c0c0c0; font-weight: bold; background-color: #c00000 } /* Generic.Error */
19+
.highlight .gh { color: #cd5c5c} /* Generic.Heading */
20+
.highlight .gi { color: #ffffff; background-color: #0000c0 } /* Generic.Inserted */
21+
.highlight span.go { color: #add8e6; font-weight: bold; background-color: #4d4d4d } /* Generic.Output, qualified with span to prevent applying this style to the Go language, see #1153. */
22+
.highlight .gp { color: #ffffff} /* Generic.Prompt */
23+
.highlight .gs { color: #ffffff} /* Generic.Strong */
24+
.highlight .gu { color: #cd5c5c} /* Generic.Subheading */
25+
.highlight .gt { color: #c0c0c0; font-weight: bold; background-color: #c00000 } /* Generic.Traceback */
26+
.highlight .kc { color: #f0e68c} /* Keyword.Constant */
27+
.highlight .kd { color: #f0e68c} /* Keyword.Declaration */
28+
.highlight .kn { color: #f0e68c} /* Keyword.Namespace */
29+
.highlight .kp { color: #f0e68c} /* Keyword.Pseudo */
30+
.highlight .kr { color: #f0e68c} /* Keyword.Reserved */
31+
.highlight .kt { color: #bdb76b} /* Keyword.Type */
32+
.highlight .ld { color: #ffffff} /* Literal.Date */
33+
.highlight .m { color: #ffffff} /* Literal.Number */
34+
.highlight .s { color: #ffffff} /* Literal.String */
35+
.highlight .na { color: #ffffff} /* Name.Attribute */
36+
.highlight .nb { color: #ffffff} /* Name.Builtin */
37+
.highlight .nc { color: #ffffff} /* Name.Class */
38+
.highlight .no { color: #ffa0a0} /* Name.Constant */
39+
.highlight .nd { color: #ffffff} /* Name.Decorator */
40+
.highlight .ni { color: #ffdead} /* Name.Entity */
41+
.highlight .ne { color: #ffffff} /* Name.Exception */
42+
.highlight .nf { color: #ffffff} /* Name.Function */
43+
.highlight .nl { color: #ffffff} /* Name.Label */
44+
.highlight .nn { color: #ffffff} /* Name.Namespace */
45+
.highlight .nx { color: #ffffff} /* Name.Other */
46+
.highlight .py { color: #ffffff} /* Name.Property */
47+
.highlight .nt { color: #f0e68c} /* Name.Tag */
48+
.highlight .nv { color: #98fb98} /* Name.Variable */
49+
.highlight .ow { color: #ffffff} /* Operator.Word */
50+
.highlight .w { color: #ffffff} /* Text.Whitespace */
51+
.highlight .mf { color: #ffffff} /* Literal.Number.Float */
52+
.highlight .mh { color: #ffffff} /* Literal.Number.Hex */
53+
.highlight .mi { color: #ffffff} /* Literal.Number.Integer */
54+
.highlight .mo { color: #ffffff} /* Literal.Number.Oct */
55+
.highlight .sb { color: #ffffff} /* Literal.String.Backtick */
56+
.highlight .sc { color: #ffffff} /* Literal.String.Char */
57+
.highlight .sd { color: #ffffff} /* Literal.String.Doc */
58+
.highlight .s2 { color: #ffffff} /* Literal.String.Double */
59+
.highlight .se { color: #ffffff} /* Literal.String.Escape */
60+
.highlight .sh { color: #ffffff} /* Literal.String.Heredoc */
61+
.highlight .si { color: #ffffff} /* Literal.String.Interpol */
62+
.highlight .sx { color: #ffffff} /* Literal.String.Other */
63+
.highlight .sr { color: #ffffff} /* Literal.String.Regex */
64+
.highlight .s1 { color: #ffffff} /* Literal.String.Single */
65+
.highlight .ss { color: #ffffff} /* Literal.String.Symbol */
66+
.highlight .bp { color: #ffffff} /* Name.Builtin.Pseudo */
67+
.highlight .vc { color: #98fb98} /* Name.Variable.Class */
68+
.highlight .vg { color: #98fb98} /* Name.Variable.Global */
69+
.highlight .vi { color: #98fb98} /* Name.Variable.Instance */
70+
.highlight .il { color: #ffffff} /* Literal.Number.Integer.Long */
71+
72+
.highlight .bash .nv {-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; }

0 commit comments

Comments
 (0)