index.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Kibana 3</title>
  4. <style>/* add your css style rules here */
  5. body {
  6. color:#c8c8c8;
  7. background-color:#272b30;
  8. font-family: 'Open Sans', sans-serif;
  9. }
  10. a {
  11. color: #63ABB5;
  12. }
  13. .title1 {
  14. font-weight: 800;
  15. line-height: .9;
  16. font-size: 98px
  17. }
  18. .title2 {
  19. font-weight: 800;
  20. line-height: .9;
  21. font-size: 60px
  22. }
  23. .title3 {
  24. font-weight: 800;
  25. font-size: 25px;
  26. line-height: 1.1;
  27. }
  28. .lowercase {
  29. text-transform: lowercase;
  30. }
  31. .uppercase {
  32. text-transform: uppercase;
  33. }
  34. .light {
  35. font-weight: 200;
  36. }
  37. .big { text-transform: uppercase; margin: 0; padding: 0; }
  38. .bold { font-weight: 800; }
  39. .orange {
  40. color: #FF9640;
  41. }
  42. .yellow {
  43. color: #FFDD68;
  44. }
  45. .teal {
  46. color: #63ABB5;
  47. }
  48. .green {
  49. color: #629153;
  50. }
  51. .purple {
  52. color: #645068;
  53. }
  54. .white {
  55. color: #fff;
  56. }
  57. </style>
  58. </head>
  59. <body ng-controller="DashCtrl" ng-cloak>
  60. <img src='src/img/kibana.png' style="float:right;margin:30px 60px 30px 60px;"><p>
  61. <div class="title2">
  62. <span class="orange">Oops.</span> Looks like you've upgraded from an old version
  63. </div>
  64. <div class="title3">No worries. <span class="light">Kibana has a new build system. Now its faster and lighter than ever before.</span></div>
  65. <p>
  66. <div class="white title3 uppercase">To fix this</div>
  67. <div class="title3 light">Instead of cloning the entire kibana, you can grab the latest build here: <a href="http://download.elasticsearch.org/kibana/kibana/kibana-latest.zip">http://download.elasticsearch.org/kibana/kibana/kibana-latest.zip</a><p>
  68. If you really want to run from source you can do so from the <a href="src/index.html">src/</a> folder. After upgrading you may need to clear your browsers cache to see all of the new features.</div>
  69. </body>
  70. </html>