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.
 
 
 

84 lines
1.3 KiB

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