Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.85 KB | None | 0 0
  1. /* RESET */
  2. html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ul, ol, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
  3.  
  4. /* HTML5 display-role reset for older browsers */
  5. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
  6.  
  7. body { line-height: 1; }
  8.  
  9. ol, ul { list-style: none; }
  10.  
  11. blockquote, q { quotes: none; }
  12.  
  13. blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
  14.  
  15. table { border-collapse: collapse; border-spacing: 0; }
  16.  
  17. /* -------------- FORMS ---------------- */
  18. body, input, textarea { font-family: 'Work Sans', sans-serif; color: #fff; }
  19.  
  20. form { padding: 20px 0; margin: 0; }
  21.  
  22. fieldset { border: none; }
  23.  
  24. fieldset ul li { margin: 0 0 10px 0; list-style: none; padding: 0; position: relative; clear: both; }
  25.  
  26. fieldset li label { font-weight: 500; text-transform: uppercase; letter-spacing: 3px; font-size: 12px; text-align: left; margin: 0 10px 5px 0; line-height: 17px; color: #FFF; }
  27.  
  28. fieldset li .field_info { font-size: 13px; color: #999; font-style: italic; }
  29.  
  30. input, textarea, option { font-size: 13px; }
  31.  
  32. input[type=text], input[type=password], textarea {background: #333; border: none; padding: 10px 9px; margin: 2px 0; width: 100%; font-size: 13px; transition: background-color .2s; -moz-transition: background-color .2s; /* Firefox 4 */ -webkit-transition: background-color .2s; /* Safari and Chrome */ -o-transition: background-color .2s; /* Opera */ border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }
  33.  
  34. input:focus, textarea:focus { outline: none; background-color: #555; transition: background-color .5s; -moz-transition: background-color .5s; /* Firefox 4 */ -webkit-transition: background-color .5s; /* Safari and Chrome */ -o-transition: background-color .5s; /* Opera */ }
  35.  
  36. select { max-width: 300px; }
  37.  
  38. option { padding: 2px; font-size: 14px; }
  39.  
  40. textarea { height: 60px; border: 1px solid #888; }
  41.  
  42. /* -------------- Errors ---------------- */
  43. label.error { clear: both; display: inline-block; background: #d93d3d; color: #fff; box-shadow: 0 1px 1px #900; padding: 2px 6px; margin: 10px; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; }
  44.  
  45. select.error { border: 2px solid #d93d3d; }
  46.  
  47. #form_errors { clear: both; float: left; background: #d93d3d; color: #fff; box-shadow: 0 1px 1px #900; font-size: 12px; padding: 5px 6px; margin: 10px 0; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; }
  48.  
  49. #form_errors.hide { display: none; }
  50.  
  51. /* Buttons */
  52. .button { border: none; cursor: pointer; font-family: 'Work Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 12px; padding: 12px 18px; }
  53.  
  54. .button:hover { background: #EEE }
  55.  
  56. .button:active { background: #333; color: #fff }
  57.  
  58. /* Utils */
  59. .clear { clear: both; }
  60.  
  61. .pull-right { float: right; }
  62.  
  63. .pull-left { float: left; }
  64.  
  65. body .hide { display: none; }
  66.  
  67. /* reCaptcha */
  68. .ss-recaptcha .ss-recaptcha-logo { height: 24px; width: 24px; float: left; background: url(https://www.gstatic.com/recaptcha/api2/logo_48.png); background-size: 24px 24px; display: none; }
  69. .ss-recaptcha .ss-anchor-invisible-text { font-size: 12px; color: #FFFFFF; }
  70. .ss-recaptcha .ss-anchor-pt { font-size: 12px; }
  71. .ss-recaptcha .ss-anchor-pt a { color: #FFFFFF; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement