You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

66 lines
1012 B

  1. .browsehappy {
  2. margin: 0.2em 0;
  3. background: orange;
  4. color: white;
  5. padding: 0.2em 0;
  6. }
  7. #navigation {
  8. ul {
  9. float: right;
  10. list-style: none;
  11. margin: 30px 0;
  12. }
  13. li {
  14. display: inline-block;
  15. padding: 0 10px;
  16. }
  17. h1 {
  18. font-family: @font-family-mono;
  19. float:left;
  20. }
  21. }
  22. h2 {
  23. text-align: center;
  24. font-size: 35px;
  25. @media (min-width: @screen-sm-min) {
  26. font-size: 50px;
  27. }
  28. }
  29. .btn-cta {
  30. .transition(all @animation-duration);
  31. padding: 10px 50px;
  32. border: 2px solid @red;
  33. font-size: 20px;
  34. color: @red;
  35. -webkit-border-radius: 10px;
  36. display: inline-block;
  37. &:hover {
  38. text-decoration: none;
  39. border-color: @dark-blue;
  40. color: @dark-blue;
  41. }
  42. }
  43. .wrapper {
  44. margin: 0 auto;
  45. max-width: 1100px;
  46. .container;
  47. }
  48. section {
  49. padding: 50px 0
  50. }
  51. img {
  52. max-width: 100%;
  53. margin: 0 auto;
  54. }
  55. a:hover {
  56. text-decoration: none;
  57. color: inherit ;
  58. }