Advertisement
Guest User

Untitled

a guest
May 23rd, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. background-color: #ffeeea;
  6. color: #34495e;
  7. color: darkgray;
  8. }
  9. .nav {
  10. background-color: black;
  11. position: fixed;
  12. width: 100%;
  13. padding: 10px 10px 10px;
  14. }
  15. .nav a:hover {
  16. color: #428bca;
  17. text-decoration: none;
  18. }
  19. .nav ul {
  20. float: right;
  21. }
  22. .nav ul li {
  23. display: inline;
  24. float: left;
  25. }
  26. .nav ul li a {
  27. font-family: Helvetica, Arial, sans-serif;
  28. color: white;
  29. text-transform: uppercase;
  30. letter-spacing: 0.05em;
  31. text-decoration: none;
  32. padding: 10px;
  33. transition: color 600ms;
  34. -webkit-transition: color 600ms;
  35. }
  36. .container {
  37.  
  38. }
  39. .container h1 {
  40. text-align: center;
  41. text-transform: uppercase;
  42. padding-top: 40px;
  43. padding-bottom: 40px;
  44. }
  45. .panel-title {
  46. text-align: center;
  47. background-color: lightgray;
  48. font-size: 1.75em;
  49. }
  50. .panel-title a {
  51. text-decoration: none;
  52. transition: color 600ms;
  53. -webkit-transition: color 600ms;
  54. letter-spacing: 0.05em;
  55. }
  56. .panel-title a:hover {
  57.  
  58. color: #428bca;;
  59. }
  60. .panel-body {
  61. text-align: center;
  62. font-size: 1.3em;
  63. }
  64. .faq-text {
  65. background-color: #faf9f5;
  66. padding: 50px;
  67. text-align: center;
  68. border: 2px solid;
  69. border-radius: 50px;
  70. margin-bottom: 20px;
  71. }
  72. .tech-lists {
  73. text-align: center;
  74. }
  75. .tech-lists {
  76. list-style-type: none;
  77. }
  78. /* Typography */
  79. * {
  80. font-family: Garamond, Caslon, Minion, serif;
  81. font-size: 100%;
  82. }
  83. h1,
  84. h2,
  85. h3 {
  86. font-family: Helvetica, Arial, sans-serif;
  87. font-weight: bold;
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement