diff --git a/css/style.css b/css/style.css index 7d57fee..8744228 100644 --- a/css/style.css +++ b/css/style.css @@ -53,6 +53,11 @@ h1 br { overflow: auto; } +.research-icon { + float: left; + margin-right: 10px; +} + #achievements-container { position: fixed; bottom: 0px; left: 0px; } diff --git a/index.html b/index.html index de7a299..a2852c5 100644 --- a/index.html +++ b/index.html @@ -81,8 +81,8 @@
{{ r.description }}
diff --git a/js/ui.js b/js/ui.js index e715889..ef9d6a1 100644 --- a/js/ui.js +++ b/js/ui.js @@ -35,7 +35,7 @@ var UI = (function () { } if ($(window).width() < 600) { - var newWidth = Math.max($(window).width() - ($(window).height() - 80 + 10), 300); + var newWidth = Math.max($(window).width() - ($(window).height() - 90 + 10), 300); $('#column-lab').width($(window).width() - newWidth); $('#column-tabs').width(newWidth); } else { @@ -48,8 +48,8 @@ var UI = (function () { $('#detector').width(500).height(500); detector.init(500); } - } else if ($(window).width() < 768 && $(window).height() - 80 < 300) { - var newWidth = $(window).width() - Math.max($(window).width() - ($(window).height() - 80 + 10), 300) - 10; + } else if ($(window).width() < 768 && $(window).height() - 90 < 300) { + var newWidth = $(window).width() - Math.max($(window).width() - ($(window).height() - 90 + 10), 300) - 10; if (detector.width != newWidth) { $('#detector').width(newWidth).height(newWidth); detector.init(newWidth);