index.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. require_once "path.php";
  3. require_once "public/load_lang.php";
  4. ?>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <link type="text/css" rel="stylesheet" href="studio/css/font.css"/>
  11. <link type="text/css" rel="stylesheet" href="studio/css/style.css"/>
  12. <link type="text/css" rel="stylesheet" href="studio/css/color_day.css" id="colorchange" />
  13. <title>wikipali</title>
  14. <meta http-equiv="refresh" content="0,pcdl/"/>
  15. <style>
  16. #login_body{
  17. display: flex;
  18. padding: 2em;
  19. }
  20. #login_left {
  21. padding-left: 4em;
  22. flex: 5;
  23. }
  24. #login_right{
  25. flex: 5;
  26. }
  27. .title{
  28. font-size: 150%;
  29. margin-top: 1em;
  30. margin-bottom: 0.5em;
  31. }
  32. #login_form{
  33. padding: 2em 0 1em 0;
  34. }
  35. #tool_bar {
  36. padding: 1em;
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. #login_shortcut {
  41. display: flex;
  42. flex-direction: column;
  43. padding: 2em 0;
  44. }
  45. #login_shortcut button{
  46. height:3em;
  47. }
  48. #button_area{
  49. text-align: right;
  50. padding: 1em 0;
  51. }
  52. .form_help{
  53. font-weight: 400;
  54. color: var(--bookx);
  55. }
  56. .login_form input{
  57. margin-top:2em;
  58. padding:0.5em 0.5em;
  59. }
  60. .login_form select{
  61. margin-top:2em;
  62. padding:0.5em 0.5em;
  63. }
  64. .login_form input[type="submit"]{
  65. margin-top:2em;
  66. padding:0.1em 0.5em;
  67. }
  68. .form_error{
  69. color:var(--error-text);
  70. }
  71. #login_form_div{
  72. width:30em;
  73. }
  74. #ucenter_body {
  75. display: flex;
  76. flex-direction: column;
  77. margin: 0;
  78. padding: 0;
  79. background-color: var(--tool-bg-color3);
  80. color: var(--btn-color);
  81. }
  82. .icon_big {
  83. height: 2em;
  84. width: 2em;
  85. fill: var(--btn-color);
  86. transition: all 0.2s ease;
  87. }
  88. .form_field_name{
  89. position: absolute;
  90. margin-left: 7px;
  91. margin-top: 2em;
  92. color: var(--btn-border-line-color);
  93. -webkit-transition-duration: 0.4s;
  94. -moz-transition-duration: 0.4s;
  95. transition-duration: 0.4s;
  96. transform: translateY(0.5em);
  97. }
  98. .viewswitch_on {
  99. position: absolute;
  100. margin-left: 7px;
  101. margin-top: 1.5em;
  102. color: var(--bookx);
  103. -webkit-transition-duration: 0.4s;
  104. -moz-transition-duration: 0.4s;
  105. transition-duration: 0.4s;
  106. transform: translateY(-15px);
  107. }
  108. .help_div{
  109. margin-bottom: 2em;
  110. width: 28em;
  111. }
  112. .htlp_title{
  113. font-size:140%;
  114. margin-bottom: 0.5em;
  115. }
  116. .help_fun_block{
  117. background-color: var(--tool-bg-color);
  118. color: var(--tool-color);
  119. padding: 4px 4px 4px 12px;
  120. max-width: 95%;
  121. border-radius: 4px;
  122. margin-bottom: 0.5em;
  123. }
  124. .help_fun_block .title{
  125. font-size:120%;
  126. margin-top:0.5em;
  127. margin-bottom:0.5em;
  128. }
  129. .help_fun_block_link_list li{
  130. display:inline;
  131. }
  132. </style>
  133. <style media="screen and (max-width:767px)">
  134. #login_body {
  135. flex-direction: column;
  136. padding: 0.2em;
  137. }
  138. #login_left {
  139. padding-right: 0;
  140. padding-top: 6em;
  141. }
  142. #login_form_div{
  143. width:100%;
  144. }
  145. #login_right {
  146. margin-top: 2em;
  147. margin-left: 10px;
  148. margin-right: 8px;
  149. }
  150. .fun_block{
  151. max-width: 100%;
  152. }
  153. </style>
  154. </head>
  155. <body id="ucenter_body" >
  156. <div id="tool_bar">
  157. </div>
  158. <span style="background-color: silver;color: black;font-size: large;width: fit-content;align-self: center;">
  159. <?php echo $_local->gui->test_declare;?>
  160. </span>
  161. <div id="login_body" >
  162. 正在跳转到<a href="pcdl/">主页</a>
  163. </div>
  164. <script>
  165. </script>
  166. </body>
  167. </html>