Advertisement
DEVZIU

CSS - Ogólny

Feb 25th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.62 KB | None | 0 0
  1. @import url("cookies.css");
  2. @import url("responsive.css");
  3.  
  4. body
  5. {
  6.     background-color: #232323;
  7.     color: #fff;
  8.     margin: 0;
  9. }
  10.  
  11. a
  12. {
  13.     text-decoration: none;
  14. }
  15.  
  16. a:link[name=get_pass]
  17. {
  18.     color: #ffffff;
  19. }
  20.  
  21. a:visited[name=get_pass]
  22. {
  23.     color: #ffffff;
  24. }
  25.  
  26. a:link[name=tocontact]
  27. {
  28.     color: #acd027;
  29. }
  30.  
  31. a:visited[name=tocontact]
  32. {
  33.     color: #acd027;
  34. }
  35.  
  36. img[name=logo]
  37. {
  38.     height: 52px;
  39.     margin: 2px;
  40.     width: 52px;
  41. }
  42.  
  43. #get_pass_title
  44. {
  45.     width: 96.8%;
  46.     margin-left: 1.6%;
  47.     margin-right: 1.6%;
  48.     color: #008cba;
  49.     font-size: 2em;
  50.     font-family: 'Noto Sans', sans-serif;
  51. }
  52.  
  53. ul[name=menu]
  54. {
  55.     height: 56px;
  56.     font-family: 'Open Sans', sans-serif;
  57.     font-size: 13px;
  58.     list-style-type: none;
  59.     margin: 0 0 16px 0;
  60.     padding: 0;
  61.     overflow: hidden;
  62.     position: static;
  63.     top: 0;
  64.     width: 100%;
  65.     background-color: #1976D2;
  66. }
  67.  
  68. li
  69. {
  70.     display: inline;
  71.     float: left;
  72.     height: 56px;
  73. }
  74.  
  75. .active[name=menu]
  76. {
  77.     color: #ffffff;
  78.     background-color: rgb(29, 29, 29, 1);
  79. }
  80.  
  81. li a[name=menu]
  82. {
  83.     display: block;
  84.     color: #fafafa;
  85.     text-align: center;
  86.     padding: 20px 16px;
  87.     text-decoration: none;
  88. }
  89.  
  90. #footer
  91. {
  92.     font-size: 16px;
  93.     font-family: 'Dosis', sans-serif;
  94.     clear: both;
  95. }
  96.  
  97. #hr_footer
  98. {
  99.     height: 0;
  100.     border: none;
  101.     border-top: 2px solid #303030;
  102.     margin-top: 15px;
  103.     margin-bottom: 15px;
  104.     width: 100%;
  105. }
  106.  
  107. #text_reserved_footer
  108. {
  109.     width: 33.3%;
  110.     float: left;
  111.     font-size: 22px;
  112.     font-family: 'Amatic SC', cursive;
  113. }
  114.  
  115. #contact_footer_e-mail
  116. {
  117.     width: 16.7%;
  118.     float: left;
  119. }
  120.  
  121. #contact_footer_template
  122. {
  123.     width: 16.7%;
  124.     float: left;
  125. }
  126.  
  127. #form_text
  128. {
  129.     font-family: 'Dosis', sans-serif;
  130.     font-size: 16px;
  131. }
  132.  
  133. #form_text_saveme
  134. {
  135.     font-family: 'Dosis', sans-serif;
  136.     font-size: 16px;
  137.     display: inline;
  138.     cursor: pointer;
  139.     margin-left: 10px;
  140. }
  141.  
  142. textarea[name=content]
  143. {
  144.     font-family: 'Dosis', sans-serif;
  145.     width: 400px;
  146.     height: 150px;
  147.     font-size: 20px;
  148.     color: #252525;
  149.     background-color: #efefef;
  150.     outline: none;
  151.     box-sizing: border-box;
  152.     border: none;
  153.     border-radius: 2px;
  154.     padding: 10px;
  155.     margin-top: 7px;
  156.     resize: none;
  157.     wrap: virtual;
  158. }
  159.  
  160. input[name=topic]
  161. {
  162.     font-family: 'Dosis', sans-serif;
  163.     width: 400px;
  164.     font-size: 20px;
  165.     color: #252525;
  166.     background-color: #efefef;
  167.     outline: none;
  168.     box-sizing: border-box;
  169.     border: none;
  170.     border-radius: 2px;
  171.     padding: 10px;
  172.     margin-top: 7px;
  173. }
  174.  
  175. input[name=btn_send]
  176. {
  177.     width: 400px;
  178.     background-color: #36b03c;
  179.     font-size: 20px;
  180.     color: white;
  181.     padding: 15px 10px;
  182.     margin-top: 20px;
  183.     border: none;
  184.     border-radius: 2px;
  185.     cursor: pointer;
  186.     letter-spacing: 2px;
  187.     outline: none;
  188. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement