style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .talk-resources {
  2. word-break: break-all;
  3. }
  4. .talk-grid {
  5. table-layout: auto;
  6. min-width: 100%;
  7. border-collapse: separate;
  8. text-align: center;
  9. }
  10. .talk-grid > thead th:first-child {
  11. max-width: 5em;
  12. }
  13. .talk-grid > thead th {
  14. text-align: center;
  15. }
  16. .talk-grid tr {
  17. height: 1.5em;
  18. }
  19. .rooms-4 .talk {
  20. width: 25%;
  21. }
  22. .rooms-3 .talk {
  23. width: 33%;
  24. }
  25. .rooms-2 .talk {
  26. width: 50%;
  27. }
  28. .rooms-1 .talk {
  29. width: 100%;
  30. }
  31. td.talk {
  32. border: 1px solid #444;
  33. padding: 4px;
  34. vertical-align: middle;
  35. }
  36. td.talk > a {
  37. text-decoration: none;
  38. border: none;
  39. }
  40. .talk-grid tr {
  41. line-height: 1em;
  42. }
  43. .talk-title a,
  44. .talk-title a:hover,
  45. .talk-title a:focus {
  46. border-bottom: none;
  47. }
  48. .talk-description strong {
  49. background: inherit;
  50. color: inherit;
  51. }
  52. /* tag speciali nei talk {{{ */
  53. /* generati guardando i tag di glypicon come glyphicon-pushpin e copiandone il campo content */
  54. td.talk::before {
  55. font-family: 'Glyphicons Halflings';
  56. float: right;
  57. }
  58. td.tag-presentazione_libro::before {
  59. content: "\e043";
  60. }
  61. td.tag-percorso_base::before {
  62. content: "\e146";
  63. }
  64. /* tag speciali nei talk }}} */
  65. /* END TALK }}} */
  66. /* Pagine speciali */
  67. .body-info .entry-content > ul {
  68. list-style: none;
  69. }
  70. /*media query min dal piccolo, max dal grande*/
  71. @media all and (max-width: 770px) {
  72. .talk-grid {
  73. font-size: 0.8em;
  74. }
  75. .talk-grid td {
  76. hyphens: auto;
  77. }
  78. }
  79. @media all and (max-width: 450px) {
  80. .talk-grid {
  81. font-size: 0.5em;
  82. }
  83. }