template.htm 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel='icon' href='/themes/default/favicon.ico'>
  9. <title>FusionPBX</title>
  10. <style>
  11. html {
  12. height: 100%;
  13. width: 100%;
  14. }
  15. body {
  16. z-index: 1;
  17. position: absolute;
  18. margin: 0;
  19. padding: 0;
  20. overflow: auto;
  21. top: 0;
  22. right: 0;
  23. bottom: 0;
  24. left: 0;
  25. text-align: center;
  26. background-image: url('/themes/default/images/backgrounds/yellowstone_4.jpg');
  27. background-size: 100% 100%;
  28. background-position: top;
  29. /*
  30. background: #ffffff;
  31. background: -ms-linear-gradient(top, #ffffff 0%, #71d733 100%);
  32. background: -moz-linear-gradient(top, #ffffff 0%, #71d733 100%);
  33. background: -o-linear-gradient(top, #ffffff 0%, #71d733 100%);
  34. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #71d733), color-stop(1, #71d733));
  35. background: -webkit-linear-gradient(top, #ffffff 0%, #71d733 100%);
  36. background: linear-gradient(to bottom, #ffffff 0%, #71d733 100%);
  37. */
  38. background-repeat: no-repeat;
  39. background-attachment: fixed;
  40. -moz-background-size:cover;
  41. -o-background-size:cover;
  42. background-size:cover;
  43. }
  44. #main_content {
  45. display: inline-block;
  46. width: 100%;
  47. /*background: #ffffff;*/
  48. background: rgba(255,255,255,0.8);
  49. background-attachment: fixed;
  50. -moz-border-radius: 4px 4px 4px 4px;
  51. -webkit-border-radius: 4px 4px 4px 4px;
  52. -khtml-border-radius: 4px 4px 4px 4px;
  53. border-radius: 4px 4px 4px 4px;
  54. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0);
  55. -moz-box-shadow: 0 1px 4px rgba(0,0,0,0);
  56. box-shadow: 0 1px 4px rgba(0,0,0,0);
  57. padding: 20px;
  58. margin-top: 65px;
  59. text-align: left;
  60. color: #5f5f5f;
  61. font-size: 12px;
  62. font-family: arial;
  63. }
  64. .btn {
  65. align-items: center;
  66. background-color: initial;
  67. background-image: linear-gradient(#464d55, #25292e);
  68. border-radius: 8px;
  69. border-width: 0;
  70. box-shadow: 0 2px 3px rgba(0, 0, 0, .3),0 2px 3px rgba(0, 0, 0, .05);
  71. box-sizing: border-box;
  72. color: #fff;
  73. cursor: pointer;
  74. display: inline-flex;
  75. flex-direction: column;
  76. font-family: expo-brand-demi,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  77. font-size: 14px;
  78. height: 30px;
  79. justify-content: center;
  80. line-height: 1;
  81. margin: 0;
  82. outline: none;
  83. overflow: hidden;
  84. padding: 0 16px;
  85. text-align: center;
  86. text-decoration: none;
  87. transform: translate3d(0, 0, 0);
  88. transition: all 150ms;
  89. vertical-align: baseline;
  90. white-space: nowrap;
  91. user-select: none;
  92. -webkit-user-select: none;
  93. touch-action: manipulation;
  94. }
  95. .btn:hover {
  96. box-shadow: rgba(0, 1, 0, .2) 0 2px 8px;
  97. opacity: .85;
  98. }
  99. .btn:active {
  100. outline: 0;
  101. }
  102. .btn:focus {
  103. box-shadow: rgba(0, 0, 0, .5) 0 0 0 3px;
  104. }
  105. pre {
  106. white-space: pre-wrap;
  107. color: #5f5f5f;
  108. }
  109. </style>
  110. </head>
  111. <body onload="">
  112. <div id="body" align="center">
  113. <div id="main_content" style="width: 70%; margin-top: 5%;">
  114. {$content}
  115. </div>
  116. </div>
  117. </body>
  118. </html>