Advertisement
FlyFar

style.css

Jun 18th, 2023
938
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.37 KB | Cybersecurity | 0 0
  1. h1, h2, h3, h4, h5, a, p, ul, li, img, header, section, div, body {margin: 0; padding: 0;}
  2.  
  3.  
  4. header {
  5.     width: 100%;
  6.     height: 84px;
  7.     background: #3B5998;
  8. }
  9.  
  10. .main-header {
  11.     padding-left:184px;
  12. }
  13.  
  14.  
  15.  
  16. .form {
  17.     border: 1px solid #cccccc;
  18.     border-radius: 5px;
  19.     height: 420px;
  20.     margin: 60px auto 45px;
  21.     width: 641px;
  22. }
  23.  
  24. .form h3 {
  25.     color: #333333;
  26.     border-bottom: 1.5px solid #cccccc;
  27.     font-family: tahoma;
  28.     font-size: 18px;
  29.     font-weight: 600;
  30.     margin: 0  20px;
  31.     padding: 20px 0 12px;
  32. }
  33. .red-box {
  34.     margin:24px auto 0;
  35.     width: 600px;
  36.     height: 97px;
  37.     background: #FFEBE8;
  38.     border: 1.5px solid red;
  39. }
  40.  
  41.  
  42. .red-box p {
  43.     font-size: 10.5px;
  44.     font-family: tahoma;
  45.     padding: 14px 0 0 20px;
  46. }
  47.  
  48. .red-box a {
  49.     text-decoration: none;
  50.     color: #3B5998;
  51. }
  52.  
  53. .red-box a:hover {
  54.     text-decoration: underline;
  55. }
  56.  
  57. .login-form {
  58.     width:75%;
  59.     margin: 0 auto;
  60.     padding: 23px 0 0 0;
  61. }
  62. .login-form label {
  63.     font-family: tahoma;
  64.     font-size: 13px;
  65.     padding: 2px 10px 3px 5px;
  66. }
  67. .login-form input {
  68.    padding: 2px 10px 3px 5px;
  69. }
  70.  
  71.  
  72. footer {
  73.     width: 984px;
  74.     margin:0 auto;
  75.     border-top: 1.5px solid #cccccc;
  76. }
  77.  
  78. ul li {
  79.     display: inline;
  80.     margin: 0 0 0 28px;
  81. }
  82.  
  83.  
  84. ul li a {
  85.     text-decoration: none;
  86.     font-family: tahoma;
  87.     font-size: 10.5px;
  88.     color: #3B5998;
  89. }
  90. ul li a:hover {
  91.     text-decoration: underline;
  92. }  
Tags: CSS style
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement