index.html 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="manifest" href="/site.webmanifest">
  6. <meta name="description" content="Schtonn site">
  7. <meta property="og:type" content="website">
  8. <meta property="og:title" content="schtonn">
  9. <meta property="og:url" content="https://schtonn.github.io/index.html">
  10. <meta property="og:site_name" content="schtonn site">
  11. <meta property="og:description" content="Schtonn site">
  12. <meta property="og:locale" content="en_US">
  13. <meta property="article:author" content="Alex">
  14. <meta name="twitter:card" content="summary">
  15. <script type="text/javascript" src="../js/jquery.min.js" crossorigin="anonymous"></script>
  16. <link rel="stylesheet" href="../css/bootstrap.min.css" crossorigin="anonymous">
  17. <script type="text/javascript" src="../js/bootstrap.min.js" crossorigin="anonymous"></script>
  18. <link rel="canonical" href="https://schtonn.github.io/">
  19. <!-- <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
  20. integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> -->
  21. <!-- <link rel="stylesheet" href="css/bootstrap.min.css" crossorigin="anonymous"> -->
  22. <link rel="preconnect" href="https://fonts.gstatic.com">
  23. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  24. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  25. <link rel="stylesheet" href="css/style.css">
  26. <!-- <link rel="stylesheet" href="/css/style.css"> -->
  27. <title>schtonn</title>
  28. <style>
  29. * {
  30. transition-duration: 300ms;
  31. }
  32. .btn {
  33. text-shadow: rgb(133, 133, 130) 1px 2px 3px;
  34. transition-duration: 100ms;
  35. transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  36. }
  37. .btn:hover {
  38. text-shadow: rgb(33, 33, 30, 0.8) 3px 3px 5px;
  39. transform: rotate(2deg) translate(-2px, -4px);
  40. }
  41. #random:hover {
  42. text-shadow: -3px -3px 3px rosybrown, 3px 3px 3px royalblue, 3px -3px 5px whitesmoke, -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  43. }
  44. #paint:hover {
  45. text-shadow: -3px -3px 3px rgb(95, 192, 150), 3px 3px 3px rgb(131, 221, 226), 3px -3px 5px rgb(151, 124, 225), -3px 3px 5px whitesmoke, -3px -3px 5px yellow;
  46. }
  47. #chess:hover {
  48. text-shadow: rgb(13, 13, 10, 0.8) -1px -2px 3px, whitesmoke 1px 2px 3px, whitesmoke -1px 2px 3px;
  49. }
  50. #gravity:hover {
  51. text-shadow: seagreen -1px -2px 3px, grey 1px 2px 3px, whitesmoke -1px 2px 3px;
  52. }
  53. #log:hover {
  54. text-shadow: floralwhite -1px -2px 3px, grey 1px 2px 3px, black -1px 2px 2px;
  55. }
  56. #chem:hover {
  57. text-shadow: red -1px -2px 3px, yellow 1px 2px 3px, green -1px 2px 3px;
  58. }
  59. .btn {
  60. text-shadow: rgb(85, 85, 85) 3px 2px 4px;
  61. display: inline-block;
  62. }
  63. .btn-xs.gee {
  64. background-color: rgb(70, 59, 150);
  65. color: white;
  66. }
  67. code.gee {
  68. background-color: rgb(70, 59, 150);
  69. }
  70. .noshadow {
  71. text-shadow: none;
  72. }
  73. .gee ::selection {
  74. color: white;
  75. text-decoration: underline wavy #FF3028;
  76. text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
  77. background-color: black;
  78. }
  79. .gee {
  80. color: white;
  81. background-color: black;
  82. }
  83. .btn-dang {
  84. transition-duration: 200ms;
  85. }
  86. .btn-dang:is(:hover, :hover:focus) {
  87. outline: 50px solid rgba(58, 58, 58, 0.5)
  88. }
  89. .btn-dang.gee:hover {
  90. outline: 50px solid rgba(202, 202, 202, 0.5)
  91. }
  92. .btn-dang:is(:hover:active:focus, :active) {
  93. outline: 150px double rgba(162, 6, 6, 0.5)
  94. }
  95. .secret,
  96. .secret>code {
  97. z-index: -1;
  98. scale: 0;
  99. background-color: floralwhite;
  100. color: floralwhite;
  101. }
  102. .secret.gee,
  103. .secret>code.gee {
  104. scale: 1;
  105. display: inline-block;
  106. background-color: black;
  107. color: black
  108. }
  109. </style>
  110. <script>
  111. $().ready(function () {
  112. $('.btn-dang').on('click', function (e) {
  113. $('body,.btn,.btn-xs,code,.secret').toggleClass('gee')
  114. console.log(e)
  115. })
  116. })
  117. </script>
  118. </head>
  119. <body itemscope itemtype="http://schema.org/WebPage" style="height:100vh">
  120. <script src="js/cursorEffects.js"></script>
  121. <script type="text/javascript">
  122. new cursoreffects.bubbleCursor();
  123. </script>
  124. <div class="page-header">
  125. <h1>> schtonn
  126. <small>yee</small>
  127. </h1>
  128. </div>
  129. <div class="col-md-10">
  130. <h3>> <span class="glyphicon glyphicon-link" aria-hidden="true"></span></h3>
  131. <p><a class="btn btn-primary btn-lg" href="/blog" style="text-shadow: black 5px 3px 3px;">
  132. <span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span>&nbsp;Blog</a></p>
  133. <p><a class="btn btn-primary" href="https://schtonn.github.io/" style="text-shadow: black 3px 2px 4px;">
  134. <span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span>&nbsp;View on github</a>
  135. <a class="btn btn-warning" href="https://schtonn.gitee.io/"
  136. style="text-shadow: rgb(155,55,55) 3px 2px 4px;"><span class="glyphicon glyphicon-thumbs-down"
  137. aria-hidden="true"></span>&nbsp;<del>View on gitee</del>(outdated)</a>
  138. </p>
  139. </div>
  140. <div class="col-md-10">
  141. <p><a class="btn btn-primary" href="https://github.com/schtonn/schtonn.github.io"
  142. style="text-shadow: black 3px 2px 4px;"><span class="glyphicon glyphicon-folder-open"
  143. aria-hidden="true"></span>&nbsp;&nbsp;Repo on github</a>
  144. <a class="btn btn-warning" href="https://gitee.com/schtonn/schtonn"
  145. style="text-shadow: rgb(155,55,55) 3px 2px 4px;"><span class="glyphicon glyphicon-folder-close"
  146. aria-hidden="true"></span>&nbsp;<del>Repo on gitee</del> (outdated)</a>
  147. </p>
  148. </div>
  149. <div class="col-md-10">
  150. <hr>
  151. <h3>> 娱乐</h3>
  152. <div>
  153. <a class="btn btn-info" href="/core/">Core</a>
  154. <div class="btn-group">
  155. <button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown">sans&nbsp;<span
  156. class="caret"></span></button>
  157. <ul class="dropdown-menu">
  158. <li><a href="/sans/">sans</a></li>
  159. <li><a href="/sans-cheat/"><span class="glyphicon glyphicon-wrench"
  160. aria-hidden="true"></span>&nbsp;&nbsp;sans</a></li>
  161. </ul>
  162. </div>
  163. <a class="btn btn-info" id="random" href="/random/"><span class="glyphicon glyphicon-random"
  164. aria-hidden="true"></span>&nbsp;&nbsp;random</a>
  165. <a class="btn btn-info" id="paint" href="/paint/"><span class="glyphicon glyphicon-pencil"
  166. aria-hidden="true"></span>&nbsp;&nbsp;绘画板</a>
  167. <a class="btn btn-info" id="chess" href="/chess/"><span class="glyphicon glyphicon-record"
  168. aria-hidden="true"></span>&nbsp;&nbsp;五子棋</a>
  169. <a class="btn btn-info" id="gravity" href="/gravity/"><span class="glyphicon glyphicon-magnet"
  170. aria-hidden="true"></span>&nbsp;&nbsp;引力</a>
  171. </div>
  172. </div>
  173. <div class="col-md-10">
  174. <hr>
  175. <h3>> 小工具</h3>
  176. <p>
  177. <a class="btn btn-danger" id="score" href="/score/"><span class="glyphicon glyphicon-stats"
  178. aria-hidden="true"></span>&nbsp;&nbsp;成绩整理</a>
  179. <a class="btn btn-info" href="/crypty/">Crypty</a>
  180. <a class="btn btn-info" id="log" href="/log/"><span class="glyphicon glyphicon-list"
  181. aria-hidden="true"></span>&nbsp;日志</a>
  182. <a class="btn btn-warning" id="chem" href="/chem/"><span class="glyphicon glyphicon-fire"
  183. aria-hidden="true"></span>&nbsp;化学</a>
  184. </p>
  185. </div>
  186. <div class="col-md-2">
  187. <hr><button class="btn btn-danger btn-dang"><span class="glyphicon glyphicon-heart"
  188. aria-hidden="true"></span></button>
  189. </div>
  190. <div class="col-md-8 secret">
  191. secret message: i love <code>regex</code>
  192. </div>
  193. </body>
  194. </html>