main.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. Main CSS stylesheet for libreboot.org (documentation section)
  3. Copyright (C) 2014, 2015 Leah Rowe <info@minifree.org>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. body {
  16. background:#dfdfdf;
  17. color:#2B2B2B;
  18. font-family:Lato,sans-serif;
  19. font-size:1em;
  20. font-weight:400;
  21. padding:0px;
  22. margin:0px;
  23. }
  24. div.section {
  25. background:#FFF;
  26. border-radius:0.5em;
  27. box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  28. padding:1em;
  29. margin:1em;
  30. }
  31. p, aside, li {
  32. margin: 0.33em 0px 0.6em;
  33. text-align:justify;
  34. }
  35. a {
  36. color:#2B2BAA;
  37. font-size:1.1em;
  38. }
  39. a:hover {
  40. text-decoration:none;
  41. }
  42. h1,h2,h3 {
  43. margin-bottom:0.2em;
  44. margin-top:0.2em;
  45. }
  46. img {
  47. max-width:100%;
  48. height:auto;
  49. border:solid 0.5em #fff;
  50. border-radius:0.25em;
  51. box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  52. margin:0px;
  53. padding:0px;
  54. margin-right:1em;
  55. margin-bottom:1em;
  56. }
  57. p.lenovobios {
  58. font-weight:bold; color:#f00; font-style:italic; font-size:1.2em;
  59. }
  60. p.lenovobios:hover {
  61. color: #000;
  62. }
  63. div.important, pre, div.subsection {
  64. padding:1em;
  65. margin-bottom:1em;
  66. background-color:#ece0e2;
  67. border-radius:0.25em;
  68. box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  69. }
  70. .photos p {
  71. text-align:left;
  72. }