Guest User

Untitled

a guest
Jun 13th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. /* For all*/
  2. * {
  3. font-family: Consolas,monaco,monospace;
  4. font-size: 14px;
  5. }
  6.  
  7. /* Menu */
  8. ul#menu {
  9. padding: 0px;
  10. position: relative;
  11. margin: 0;
  12. }
  13. ul#menu li {
  14. display: inline;
  15. }
  16. ul#menu li a {
  17. padding: 10px 20px;
  18. text-decoration: double;
  19. font-size: 24px;
  20. line-height: 2.8em;
  21. color: #dcdcdc;
  22. }
  23. ul#menu li a:hover {
  24. background: #626264;
  25.  
  26. }
  27.  
  28. /* Navigator */
  29. ul#navigator {
  30. padding: 5px 8px;
  31. position: relative;
  32. margin: 0;
  33. }
  34. ul#navigator li {
  35. display: inline;
  36. }
  37. ul#navigator li a {
  38. padding: 5px 8px;
  39. text-decoration: double;
  40. font-size: 16px;
  41. line-height: 2.8em;
  42. color: #dcdcdc;
  43. }
  44. ul#navigator li a:hover {
  45. text-decoration: underline;
  46. }
  47.  
  48. /*Table*/
  49. table {
  50. margin: auto;
  51. border: none;
  52. width: 60%;
  53. }
  54.  
  55. td {
  56. text-decoration: double;
  57. border: none;
  58. }
  59.  
  60. th {
  61. border: none;
  62. }
  63.  
  64. tr:hover.line {
  65. border: none;
  66. background: #626264;
  67. }
  68.  
  69. /* Body */
  70. body {
  71. text-align: center;
  72. align-content: center;
  73. background: #454548;
  74. color: #dcdcdc;
  75. }
  76.  
  77. select {
  78. height: 23px;
  79. }
  80. p {
  81. font-style: normal;
  82. font-weight: 400;
  83. line-height: 20px;
  84. }
  85.  
  86. blockquote {
  87. font-size: 21px;
  88. font-style: normal;
  89. font-weight: 400;
  90. line-height: 30px;
  91. }
  92.  
  93. pre {
  94. font-size: 13px;
  95. font-style: normal;
  96. font-weight: 400;
  97. line-height: 18.5667px;
  98. }
  99.  
  100. ::selection {
  101. background: #264f78
  102. }
  103.  
  104. ::-moz-selection {
  105. background: #264f78
  106. }
Add Comment
Please, Sign In to add comment