My static website generator using poole https://www.xythobuz.de
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

style.css 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. body {
  2. font-size: 1.2em;
  3. font-family: 'Droid Sans', sans-serif;
  4. margin: 0px;
  5. padding: 0px;
  6. }
  7. #nav {
  8. border-bottom-style: solid;
  9. border-bottom-width: 2px;
  10. border-bottom-color: green; /* orange; */
  11. background-color: white;
  12. width: 100%;
  13. }
  14. #content {
  15. width: 75%;
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. @media (min-height: 750px) {
  20. #nav {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. }
  25. #content {
  26. padding-top: 5em;
  27. }
  28. #index-avatar {
  29. margin-top: 1.5em;
  30. }
  31. }
  32. pre {
  33. max-height: 300px;
  34. overflow: scroll;
  35. font-size: 0.9em;
  36. padding: 10px;
  37. margin: 1em;
  38. border-style: solid;
  39. border-width: 2px;
  40. border-color: green; /* orange; */
  41. border-radius: 10px;
  42. }
  43. .show-comments {
  44. background: none;
  45. border: none;
  46. font: inherit;
  47. cursor: pointer;
  48. border-bottom: 1px solid blue;
  49. color: blue;
  50. }
  51. #home {
  52. font-size: 2.5em;
  53. margin-right: 0.5em;
  54. }
  55. #nav ul {
  56. list-style-type: none;
  57. }
  58. #nav ul li {
  59. display: inline;
  60. margin-right: 0.5em;
  61. }
  62. #nav a:link {
  63. color: black;
  64. font-weight: bold;
  65. text-decoration: none;
  66. }
  67. #nav a:visited {
  68. color: black;
  69. font-weight: bold;
  70. text-decoration: none;
  71. }
  72. #footer {
  73. color: gray;
  74. text-align: center;
  75. margin-top: 1em;
  76. font-size: small;
  77. }
  78. #footer a:link {
  79. color: gray;
  80. }
  81. #footer a:visited {
  82. color: gray;
  83. }
  84. #index-avatar {
  85. width: 150px;
  86. height: 150px;
  87. float: right; border: 2px, solid, #000000;
  88. border-radius: 10px;
  89. background-image: url(http://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=150);
  90. margin-left: 2em;
  91. margin-bottom: 1em;
  92. }
  93. #index-twitter-page {
  94. width: 100%;
  95. margin-left: auto;
  96. margin-right: auto;
  97. }
  98. iframe[id^='twitter-widget-'] {
  99. width: 100%;
  100. }