index.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. .title1 {
  11. font-weight: 800;
  12. line-height: .9;
  13. font-size: 98px
  14. }
  15. .title2 {
  16. font-weight: 800;
  17. line-height: .9;
  18. font-size: 60px
  19. }
  20. .title3 {
  21. font-weight: 800;
  22. font-size: 25px;
  23. line-height: 1.1;
  24. }
  25. .lowercase {
  26. text-transform: lowercase;
  27. }
  28. .uppercase {
  29. text-transform: uppercase;
  30. }
  31. .light {
  32. font-weight: 200;
  33. }
  34. .big { text-transform: uppercase; margin: 0; padding: 0; }
  35. .bold { font-weight: 800; }
  36. .orange {
  37. color: #FF9640;
  38. }
  39. .yellow {
  40. color: #FFDD68;
  41. }
  42. .teal {
  43. color: #63ABB5;
  44. }
  45. .green {
  46. color: #629153;
  47. }
  48. .purple {
  49. color: #645068;
  50. }
  51. .white {
  52. color: #fff;
  53. }
  54. </style>
  55. </head>
  56. <body ng-controller="DashCtrl" ng-cloak>
  57. <img src='dist/img/kibana.png' style="float:right;margin-right:30px;"><p>
  58. <div class="title2">
  59. <span class="orange">Oops.</span> Looks like you've upgraded from an old version
  60. </div>
  61. <div class="title3">No worries. <span class="light">Kibana has a new build system. Now its faster and lighter than ever before.</span></div>
  62. <p>
  63. <div class="white title3 uppercase">To fix this</div>
  64. <div class="title3 light">Instead of copying the entire kibana repository, you need only copy the contents of the <a href="dist/index.html" class="teal">dist/</a> folder. After upgrading you may need to clear your browsers cache to see all of the new features.</div>
  65. </body>
  66. </html>