Cyberlife.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. @import url("./fonts/fontsheet.css");
  2. *::selection {
  3. background-color:#DD2648;
  4. color:#fff;
  5. }
  6. body{
  7. background-color:#000100;
  8. background-repeat:no-repeat;
  9. background-image:url(./images/background.png);
  10. background-attachment:absolute;
  11. background-position:bottom;
  12. color:#9B92FF;
  13. font-family:sans-serif;
  14. font-size:14px;
  15. }
  16. h2,h3{
  17. font-family:'1942_report1942_report';
  18. color:#DD2648;
  19. }
  20. #container{
  21. width:800px;
  22. margin:0 auto 480px auto;
  23. }
  24. #banner{
  25. background-color:#8899FF;
  26. position:relative;
  27. background-image:url("./images/banner.png");
  28. width:800px;
  29. height:450px;
  30. margin-bottom:0;
  31. }
  32. #navigator{
  33. background-color:#6862af;
  34. margin:0 auto;
  35. width:800px;
  36. text-align:center;
  37. }
  38. #navigator ul{
  39. list-style-type:none;
  40. padding:0;
  41. margin:0;
  42. overflow:hidden;
  43. }
  44. #navigator li{
  45. display:inline;
  46. }
  47. #navigator a:link, a:visited{
  48. display:inline-block;
  49. width:auto;
  50. color:#000000;
  51. background-color:#6862af;
  52. text-align:center;
  53. padding:4px;
  54. margin:0px;
  55. text-decoration:none;
  56. text-transform:uppercase;
  57. }
  58. #main{
  59. text-align:center;
  60. width:788px;
  61. border-style:dashed;
  62. border-width:0 1px 1px 1px;
  63. border-color:#37255c;
  64. margin:0;
  65. padding:10px 5px;
  66. }
  67. #subtxt{
  68. text-align:center;
  69. width:788px;
  70. border-style:dashed;
  71. border-width:0 1px 1px 1px;
  72. border-color:#37255c;
  73. margin:0 auto;
  74. padding:10px 5px;
  75. }
  76. #main a:link{text-decoration:underline; color:#88B4FF;}
  77. #main a:visited{text-decoration:underline; color:#88B4FF;}
  78. #main a:hover{text-decoration:none; color:#DD2648;}
  79. #main a:active{text-decoration:none; color:#DD2648;}
  80. #subtxt a:link{text-decoration:underline; color:#88B4FF;}
  81. #subtxt a:visited{text-decoration:underline; color:#88B4FF;}
  82. #subtxt a:hover{text-decoration:none; color:#8899FF;}
  83. #subtxt a:active{text-decoration:none; color:#8899FF;}
  84. #main ul {
  85. margin:1.3em;
  86. padding:0;
  87. }
  88. #main li {
  89. list-style-type:none;
  90. }
  91. .list-content {
  92. overflow:hidden;
  93. display:none;
  94. }
  95. .list input {display:none;}
  96. .list label {
  97. display:block;
  98. width:180px;
  99. padding:5px;
  100. font-family:'1942_report1942_report';
  101. font-size:20px;
  102. margin:0 auto;
  103. border:1px dashed #37255c;
  104. cursor:pointer;
  105. }
  106. .list input:checked ~ .list-content {
  107. display:block;
  108. }
  109. .code {
  110. background-color:black;
  111. width:250px;
  112. height:70px;
  113. overflow:auto;
  114. padding:5px;
  115. margin:0 auto;
  116. font-family:monospace;
  117. color:green;
  118. border:1px dashed green;
  119. }