style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. body {
  2. font-family:sans-serif;
  3. font-size:15pt;
  4. }
  5. p {
  6. font-family:serif;
  7. }
  8. body.cfn{
  9. background-color:#454242;
  10. color:white;
  11. }
  12. p {
  13. font-family:serif;
  14. }
  15. a {
  16. text-decoration:none;
  17. color:#e12323;
  18. }
  19. a:hover {
  20. text-decoration: underline darkblue;
  21. font-size: large;
  22. color: blueviolet;
  23. }
  24. ul {
  25. list-style:none;
  26. }
  27. hr {
  28. border:0;
  29. border-top:1px dotted #000;
  30. }
  31. #cfn{
  32. display: none;
  33. background: black;
  34. font-size: 3em;
  35. font-family: Mono;
  36. margin: 10% 40% 10% 10%;
  37. text-align: center;
  38. border-radius:5%;
  39. }
  40. #cfn a:hover{
  41. background: green;
  42. color: black;
  43. font-size: 100%;
  44. }
  45. .logo{
  46. float:right;
  47. }
  48. .menu {
  49. background-color: black;
  50. border-radius: 100px;
  51. padding: 1% 5% 1% 1%;
  52. margin: 0% 5% 0% 5%;
  53. text-align: center;
  54. }
  55. .lang {
  56. border-radius: 100px;
  57. padding: 1% 5% 4% 6%;
  58. margin: 0% 110%;
  59. position: absolute;
  60. font-family: "Mono";
  61. }
  62. .lang a:hover{
  63. color: green;
  64. }
  65. body {
  66. max-width: 800px;
  67. left: 50%;
  68. position: relative;
  69. transform: translate(-50%,0%);
  70. }
  71. footer {
  72. background-color: black;
  73. border-radius: 100px;
  74. padding: 1% 5% 1% 1%;
  75. margin: 0% 5% 0% 5%;
  76. text-align: center;
  77. color: white;
  78. font-size:0.7em;
  79. }
  80. .copyleft {
  81. transform:rotate(180deg);
  82. display:inline-block;
  83. }
  84. section>h3 {
  85. text-align: left;
  86. margin-right: 2rem;
  87. margin-left: 2rem;
  88. }
  89. section p:nth-child(2) {
  90. font-size: large;
  91. margin: auto 6rem;
  92. text-align: justify;
  93. }
  94. #propose>h3{
  95. text-align:center;
  96. color: yellow;
  97. text-decoration: underline;
  98. }
  99. .node.tmpl{
  100. background-color: #151513;
  101. font-family: "Mono";
  102. text-align: center;
  103. border-radius: 10px;
  104. color:green;
  105. font-size: 1em;
  106. }
  107. .register{
  108. background-color: #151513;
  109. font-family: "Mono";
  110. text-align: center;
  111. border-radius: 10px;
  112. color:green;
  113. font-size: 1em;
  114. }
  115. .quote{
  116. margin: 8px 0px 8px 0px;
  117. padding: 8px 8px 8px 8px;
  118. border-width: 3px;
  119. border-style: dotted;
  120. border-color: #000000;
  121. background-color: #151513;
  122. font-family: "Mono";
  123. text-align: right;
  124. font-size:12pt;
  125. color: white;
  126. white-space: pre-wrap;
  127. }
  128. pre {
  129. margin: 8px 0px 8px 0px;
  130. padding: 8px 8px 8px 8px;
  131. border-width: 3px;
  132. border-style: dotted;
  133. border-color: #000000;
  134. background-color: #151513;
  135. font-family: "Mono";
  136. text-align: left;
  137. font-size:12pt;
  138. color: white;
  139. white-space: pre-wrap;
  140. }