Blog minta(kopia) http://mb.os-service.eu
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. html, body {
  2. height: 100%;
  3. }
  4. body {
  5. padding-top: 55px;
  6. display: flex;
  7. text-align: center;
  8. flex-direction: column;
  9. }
  10. main {
  11. margin: auto;
  12. padding: 25px;
  13. flex: 1 0 auto;
  14. max-width: 750px;
  15. }
  16. /*footer*/
  17. .copyright {
  18. margin: 15px 0;
  19. }
  20. /*home page*/
  21. .intro {
  22. transform: translateY(22vh);
  23. }
  24. .intro > h1 {
  25. color: #212121;
  26. font-size: 12vh;
  27. }
  28. .intro > h2 {
  29. color: #757575;
  30. font-size: 3vmin;
  31. }
  32. .intro > .profile {
  33. width: 10vh;
  34. height: 10vh;
  35. border-radius: 50%;
  36. }
  37. /*apply accent colour to links*/
  38. a:link, a:visited {
  39. color: var(--accent);
  40. }
  41. a.icon:hover {
  42. text-decoration: none;
  43. }
  44. a:hover {
  45. color: var(--accent) !important;
  46. }
  47. /*paginator at bottom of list view*/
  48. .pages {
  49. padding: 15px 0;
  50. }
  51. .pages-icon {
  52. padding: 0 15px;
  53. }
  54. /*list item for posts and projects*/
  55. .item {
  56. padding: 10px 0;
  57. }
  58. .item-tag {
  59. background-color: var(--accent);
  60. }
  61. /*navigation bar icons*/
  62. .navbar-icon {
  63. font-size: 125%;
  64. display: inline-block !important;
  65. }
  66. /*coloured borders at top and bottom of the page*/
  67. .navbar.navbar-default {
  68. border-top: var(--border-width) solid var(--accent);
  69. }
  70. footer {
  71. border-bottom: var(--border-width) solid var(--accent);
  72. }
  73. img {
  74. max-width: 100%;
  75. }