Advertisement
Guest User

CSS

a guest
Oct 23rd, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. .bg1 {
  2. background-image: url('milkyway.jpg');
  3. background-repeat: no-repeat;
  4. background-attachment: fixed;
  5. background-position: center;
  6. }
  7.  
  8. .appMain {
  9. height: 300px;
  10. width: 100%;
  11. z-index: -1;
  12. position:absolute;
  13. margin:auto;
  14. top:40%;
  15. bottom:60%;
  16. background-color: rgba(255,255,255,0.4);
  17. -webkit-box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.5);
  18. -moz-box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.5);
  19. box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.5);
  20. }
  21.  
  22. .appMain h1 {
  23. font-family: 'Authentic', Palatino, serif;
  24. font-style: italic;
  25. font-size:6em;
  26. letter-spacing: 5px;
  27. text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  28. color: orange;
  29. text-align: center;
  30. padding-top: 25px;
  31. }
  32.  
  33. *{padding: 0; margin: 0;}
  34.  
  35. @font-face { font-family: Authentic; src: url('authentichilton.TTF'); }
  36.  
  37. .buttonShadow {
  38. -webkit-box-shadow: -2px 0px 11px 0px rgba(50, 50, 50, 0.5);
  39. -moz-box-shadow: -2px 0px 11px 0px rgba(50, 50, 50, 0.5);
  40. box-shadow: -2px 0px 11px 0px rgba(50, 50, 50, 0.5);
  41. }
  42.  
  43. .buttonShadow2 {
  44. -webkit-box-shadow: 3px 0px 11px 0px rgba(50, 50, 50, 0.75);
  45. -moz-box-shadow: 3px 0px 11px 0px rgba(50, 50, 50, 0.75);
  46. box-shadow: 3px 0px 11px 0px rgba(50, 50, 50, 0.75);
  47. }
  48.  
  49. button.alert, .button.alert {
  50. font-family: 'Authentic', Palatino, serif;
  51. letter-spacing: 5px;
  52. font-size: 2.5em;
  53. font-style: bold;
  54. text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  55. padding-top: 0.5rem;
  56. padding-right: 1rem;
  57. padding-bottom: 0.4rem;
  58. padding-left: 1rem;
  59. background-color: #FF9100;
  60. }
  61.  
  62. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  63. background-color:#FF8000 ; }
  64. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  65. color: white; }
  66.  
  67. .appSubheading {
  68. text-align: center;
  69. font-family: 'Authentic', Palatino, serif;
  70. letter-spacing: 5px;
  71. color: white;
  72. font-style: bold;
  73. font-size: 2.5em;
  74. text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  75. margin-top: -20px;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement