Guest User

Untitled

a guest
Jul 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. @import "core/global";
  2.  
  3. #content {
  4. margin: 0 auto;
  5. width: 940px;
  6. background: #f8f8f8;
  7.  
  8. @include box-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
  9. @include border-radius(10px, 10px, 10px, 10px)
  10. }
  11.  
  12. #promoHeader {
  13. background: url(/images/restaurant/header.jpg) no-repeat;
  14. height: 382px;
  15. border: 1px solid #FFF;
  16. border-bottom: 5px solid #EEE;
  17. margin-bottom: 30px;
  18. position: relative;
  19.  
  20. @include border-radius(10px, 10px, 0px, 0px);
  21. }
  22.  
  23. #promoHeaderText {
  24. margin: 20px 20px 20px 30px;
  25.  
  26. h1 {
  27. font-size: 42px;
  28. color: #FFF;
  29. @include text-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  30. }
  31.  
  32. ul {
  33. list-style: none;
  34. margin: 30px 0 30px 0;
  35. }
  36.  
  37. li {
  38. background: url(/images/restaurant/bullet.png) left no-repeat;
  39. padding-left: 30px;
  40. line-height: 40px;
  41. font-weight: bold;
  42. font-size: 20px;
  43. color: #FFF;
  44. @include text-shadow(1px 1px 1px rgba(100, 26, 0, 0.5));
  45. }
  46.  
  47. a.signupButton {
  48. background: url(/images/restaurant/signup_button.png) no-repeat;
  49. width: 252px;
  50. height: 47px;
  51. display: inline-block;
  52. }
  53.  
  54. a.signupButton:hover { background-position: 0 -47px; }
  55. a.signupButton:active { background-position: 0 -94px; }
  56. }
  57.  
  58. #overview {
  59. margin: 40px;
  60.  
  61. h2 {
  62. font-size: 25px;
  63. color: #0082c6;
  64. }
  65.  
  66. .section {
  67. border-bottom: 1px solid #e6e6e6;
  68. padding-bottom: 20px;
  69. @include box-shadow(0px 1px 0px rgba(255, 255, 255, 1));
  70. }
  71. }
Add Comment
Please, Sign In to add comment