# HG changeset patch # User Jie Kang # Date 1486133694 18000 # Node ID b5c26476b5b9a2296712bfa77c0f690bf004bab2 # Parent ef7e08a19d563acc80a08a562b1bef3231692fe5 Fix front page resizing issues. Adjust downloads page code. Add minimum sizes for small and large screens. diff -r ef7e08a19d56 -r b5c26476b5b9 content/downloads/content.html --- a/content/downloads/content.html Mon Nov 28 16:30:52 2016 -0500 +++ b/content/downloads/content.html Fri Feb 03 09:54:54 2017 -0500 @@ -1,41 +1,45 @@
-
-
-
-

Downloads

-
-
+ +
+
+

Downloads

+
+
+

Latest Stable Release

-

Unstable Development Release

- +

Unstable Development Release

+
-

Previous Releases

- +

Previous Releases

+ +
+
+
+
+

See Getting Started for installation instructions.

-
-
-
-

Requirements

-
-
-

-
    -
  • Linux (Fedora, RHEL, CentOS, etc.)
  • -
  • OpenJDK >= 1.7
  • -
  • Mongodb >= 2.2 (or 2.0 if no SSL required)
  • -
  • Servlet container (optional)
  • -
-

-
+
+
+

Requirements

+
+
+

+
    +
  • Linux (Fedora, RHEL, CentOS, etc.)
  • +
  • OpenJDK >= 1.7
  • +
  • Mongodb >= 2.2 (or 2.0 if no SSL required)
  • +
  • Servlet container (optional)
  • +
+

\ No newline at end of file diff -r ef7e08a19d56 -r b5c26476b5b9 content/home/content.html --- a/content/home/content.html Mon Nov 28 16:30:52 2016 -0500 +++ b/content/home/content.html Fri Feb 03 09:54:54 2017 -0500 @@ -6,7 +6,7 @@ Thermostat

- The powerful instrumentation tool for the Hotspot JVM. + The powerful, free and open source instrumentation tool for the Hotspot JVM.

Download
@@ -28,7 +28,7 @@ Using Thermostat is quick and easy.

- Profile methods, find memory leaks, visualize the stack and more. + Profile methods, find memory leaks, visualize the stack and more.

Get started
diff -r ef7e08a19d56 -r b5c26476b5b9 css/style.less --- a/css/style.less Mon Nov 28 16:30:52 2016 -0500 +++ b/css/style.less Fri Feb 03 09:54:54 2017 -0500 @@ -11,7 +11,9 @@ @white-75: rgba(255,255,255,0.75); /* sizes */ +@screen-sm-min: 768px; @screen-md-min: 992px; +@screen0-lg-min: 1200px; /* content-divs */ #content-header { @@ -52,6 +54,10 @@ background-color: @dark-blue; } +#front-page-images { + background-color: @white; +} + /* front page video */ #front-page-video { margin: 25px; @@ -74,13 +80,18 @@ } .logo-img { - margin-top: 150px; - max-width: 25%; + margin-top: 100px; + max-width: 20%; +} + +@media (min-width: @screen-sm-min) { + .logo-img { + max-width: 15%; + } } @media (min-width: @screen-md-min) { .logo-img { - margin-top: 100px; max-width: 10%; } } @@ -99,10 +110,6 @@ /* navbar */ /**/ -#nav-container { - max-height: 50px; -} - .navbar-default { background: @dark-blue; font-size: 1.2em;