You are here

base.css in Decoupled Blocks 8

.learn a {
  font-weight: normal;
  text-decoration: none;
  color: #b83f45;
}

.learn a:hover {
  text-decoration: underline;
  color: #787e7e;
}

.learn h3,
.learn h4,
.learn h5 {
  margin: 10px 0;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.learn h3 {
  font-size: 24px;
}

.learn h4 {
  font-size: 18px;
}

.learn h5 {
  margin-bottom: 0;
  font-size: 14px;
}

.learn ul {
  padding: 0;
  margin: 0 0 30px 25px;
}

.learn li {
  line-height: 20px;
}

.learn p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
}

#issue-count {
  display: none;
}

.quote {
  border: none;
  margin: 20px 0 60px 0;
}

.quote p {
  font-style: italic;
}

.quote p:before {
  content: '“';
  font-size: 50px;
  opacity: .15;
  position: absolute;
  top: -20px;
  left: 3px;
}

.quote p:after {
  content: '”';
  font-size: 50px;
  opacity: .15;
  position: absolute;
  bottom: -42px;
  right: 3px;
}

.quote footer {
  position: absolute;
  bottom: -40px;
  right: 0;
}

.quote footer img {
  border-radius: 3px;
}

.quote footer a {
  margin-left: 5px;
  vertical-align: middle;
}

.speech-bubble {
  position: relative;
  padding: 10px;
  background: rgba(0, 0, 0, .04);
  border-radius: 5px;
}

.speech-bubble:after {
  content: '';
  position: absolute;
  top: 100%;
  right: 30px;
  border: 13px solid transparent;
  border-top-color: rgba(0, 0, 0, .04);
}

.learn-bar > .learn {
  position: absolute;
  width: 272px;
  top: 8px;
  left: -300px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, .6);
  transition-property: left;
  transition-duration: 500ms;
}

@media (min-width: 899px) {
  .learn-bar {
    width: auto;
    padding-left: 300px;
  }

  .learn-bar > .learn {
    left: 8px;
  }
}

File

modules/pdb_react/components/react_todo/css/base.css
View source
  1. .learn a {
  2. font-weight: normal;
  3. text-decoration: none;
  4. color: #b83f45;
  5. }
  6. .learn a:hover {
  7. text-decoration: underline;
  8. color: #787e7e;
  9. }
  10. .learn h3,
  11. .learn h4,
  12. .learn h5 {
  13. margin: 10px 0;
  14. font-weight: 500;
  15. line-height: 1.2;
  16. color: #000;
  17. }
  18. .learn h3 {
  19. font-size: 24px;
  20. }
  21. .learn h4 {
  22. font-size: 18px;
  23. }
  24. .learn h5 {
  25. margin-bottom: 0;
  26. font-size: 14px;
  27. }
  28. .learn ul {
  29. padding: 0;
  30. margin: 0 0 30px 25px;
  31. }
  32. .learn li {
  33. line-height: 20px;
  34. }
  35. .learn p {
  36. font-size: 15px;
  37. font-weight: 300;
  38. line-height: 1.3;
  39. margin-top: 0;
  40. margin-bottom: 0;
  41. }
  42. #issue-count {
  43. display: none;
  44. }
  45. .quote {
  46. border: none;
  47. margin: 20px 0 60px 0;
  48. }
  49. .quote p {
  50. font-style: italic;
  51. }
  52. .quote p:before {
  53. content: '“';
  54. font-size: 50px;
  55. opacity: .15;
  56. position: absolute;
  57. top: -20px;
  58. left: 3px;
  59. }
  60. .quote p:after {
  61. content: '”';
  62. font-size: 50px;
  63. opacity: .15;
  64. position: absolute;
  65. bottom: -42px;
  66. right: 3px;
  67. }
  68. .quote footer {
  69. position: absolute;
  70. bottom: -40px;
  71. right: 0;
  72. }
  73. .quote footer img {
  74. border-radius: 3px;
  75. }
  76. .quote footer a {
  77. margin-left: 5px;
  78. vertical-align: middle;
  79. }
  80. .speech-bubble {
  81. position: relative;
  82. padding: 10px;
  83. background: rgba(0, 0, 0, .04);
  84. border-radius: 5px;
  85. }
  86. .speech-bubble:after {
  87. content: '';
  88. position: absolute;
  89. top: 100%;
  90. right: 30px;
  91. border: 13px solid transparent;
  92. border-top-color: rgba(0, 0, 0, .04);
  93. }
  94. .learn-bar > .learn {
  95. position: absolute;
  96. width: 272px;
  97. top: 8px;
  98. left: -300px;
  99. padding: 10px;
  100. border-radius: 5px;
  101. background-color: rgba(255, 255, 255, .6);
  102. transition-property: left;
  103. transition-duration: 500ms;
  104. }
  105. @media (min-width: 899px) {
  106. .learn-bar {
  107. width: auto;
  108. padding-left: 300px;
  109. }
  110. .learn-bar > .learn {
  111. left: 8px;
  112. }
  113. }