style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. body {
  2. padding: 50px;
  3. font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  4. }
  5. a {
  6. color: #00B7FF;
  7. }
  8. #warning{
  9. color: red;
  10. }
  11. textarea { border: 2px dotted black; }
  12. button#dobtn { margin-top: 10px; padding: 5px 30px; cursor: pointer; border: 1px solid black; transition: all .3s ease-in-out}
  13. button#dobtn:hover {background-color: black; color: white; transform: scale(.96); }
  14. button#dobtn:active { transform: scale(1.03); }
  15. #text_edit
  16. {
  17. width: 70vw;
  18. }
  19. pre {
  20. white-space: pre-wrap;
  21. word-wrap: break-word;
  22. }
  23. hr {
  24. border:0; height:1px; background-color:#d4d4d4;
  25. color:#d4d4d4 /* IE6 */
  26. }
  27. #zhao {
  28. color: red;
  29. }
  30. #enurl:hover { transform: scale(1.01); }
  31. #tg.show
  32. {
  33. background: red;
  34. width: 100vh;
  35. opacity: 1;
  36. color: yellow;
  37. font-size: 10em;
  38. }
  39. #tg
  40. {
  41. top: 1vw;
  42. left: 1vw;
  43. width: 1px;
  44. display: block;
  45. position: absolute;
  46. background: gray;
  47. transition: all 2s ease-in;
  48. opacity: 0;
  49. }
  50. #enurl
  51. {
  52. transition: all .3s ease-in-out;
  53. margin: 3px 0;
  54. display: inline-block;
  55. color: white;
  56. background-color: #66CCCC;
  57. padding: 6px 12px;
  58. border-radius: .5;
  59. }