Advertisement
mrnavaone

Stylesheet

May 22nd, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <base target="_top">
  5.   </head>
  6.   <body>
  7.     <style>
  8. .hidden {
  9.     display: none;
  10. }
  11.  
  12. .form-group {
  13.     margin: 2px 0px;
  14. }
  15.  
  16. #submitButton {
  17.     margin: 4px 0px;
  18. }
  19.  
  20. body {
  21.     margin-left: 50px;
  22. }
  23.  
  24. .message {
  25.    padding: 2px;
  26.    width: 50%;    
  27. }
  28.  
  29. .message > * {  
  30.    display: inline-block;
  31. }
  32.  
  33. .message .title {
  34.     font-weight: 700;
  35.     font-size: 1.1em;    
  36. }
  37.  
  38. .success.message {
  39.     border: 1px solid #5c9a18;
  40.     background: #e4ffe4;
  41.     color: #2a8e2a;
  42. }
  43.  
  44. .error.message {
  45.     background: #f9cece;
  46.     border: 1px solid #7d2929;
  47. }
  48.  
  49. .error.message .title {
  50.     color: #863030;
  51. }
  52.  
  53. button.clear {
  54.     background: -moz-linear-gradient(top, #dd6e39, #d17636);
  55.     background: -ms-linear-gradient(top, #dd6e39, #d17636);
  56.     background: -o-linear-gradient(top, #dd6e39, #d17636);
  57.     background: -webkit-linear-gradient(top, #dd6e39, #d17636);
  58.     background: linear-gradient(top, #dd6e39, #d17636);
  59.     border: 1px solid transparent;
  60.     color: #fff;
  61.     text-shadow: 0 1px rgba(0, 0, 0, .1);
  62. }
  63.  
  64. button.clear:hover {
  65.     background: -moz-linear-gradient(top, #ca602e, #bd6527);
  66.     background: -ms-linear-gradient(top, #ca602e, #bd6527);
  67.     background: -o-linear-gradient(top, #ca602e, #bd6527);
  68.     background: -webkit-linear-gradient(top, #ca602e, #bd6527);
  69.     background: linear-gradient(top, #ca602e, #bd6527);
  70.     border: 1px solid transparent;
  71.     color: #fff;
  72.     text-shadow: 0 1px rgba(0, 0, 0, .1);
  73. }
  74. </style>
  75.   </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement