style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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:black;
  10. color:lime;
  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. .lang {
  49. background-color: black;
  50. border-radius: 100px;
  51. padding: 1% 5% 1% 1%;
  52. margin: 20x;
  53. }
  54. .lang a:hover{
  55. color: green;
  56. }
  57. body {
  58. max-width: 800px;
  59. left: 50%;
  60. position: relative;
  61. transform: translate(-50%,0%);
  62. }
  63. footer {
  64. text-align:center;
  65. font-size:0.7em;
  66. padding-top:30px;
  67. }
  68. .copyleft {
  69. transform:rotate(180deg);
  70. display:inline-block;
  71. }
  72. section>h3 {
  73. text-align: left;
  74. margin-right: 2rem;
  75. margin-left: 2rem;
  76. }
  77. section p:nth-child(2) {
  78. font-size: large;
  79. margin: auto 6rem;
  80. text-align: justify;
  81. }
  82. .register{
  83. background-color: #151513;
  84. font-family: "Mono";
  85. text-align: center;
  86. border-radius: 10px;
  87. color:green;
  88. font-size: 1em;
  89. }
  90. pre {
  91. margin: 8px 0px 8px 0px;
  92. padding: 8px 8px 8px 8px;
  93. border-width: 3px;
  94. border-style: dotted;
  95. border-color: #000000;
  96. background-color: #151513;
  97. font-family: "Mono";
  98. text-align: right;
  99. font-size:12pt;
  100. color: white;
  101. }