Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. body {
  2. background-image:url(img/bg.jpg);
  3. background-repeat: no-repeat;
  4. }
  5. #main {
  6. background-color:white;
  7. position: fixed;
  8. width:85%;
  9. height:100%;
  10. margin-left: 120px;
  11. margin-top: 50px;
  12. border: solid black 0.5px;
  13. }
  14.  
  15.  
  16. nav {
  17. background-color: #dbdbea;
  18. width: 99.9%;
  19. height: 50px;
  20. position: relative;
  21. border: solid black 0.1px;
  22. display: block;
  23. }
  24. nav ul li {
  25. float:left;
  26. padding-right: 20px;
  27. padding-left: 80px;
  28. list-style-type: none;
  29.  
  30. }
  31.  
  32. nav a {
  33.  
  34. font-family: sans-serif;
  35. text-decoration: none;
  36. font-weight: bold;
  37. color: #535362;
  38.  
  39.  
  40. }
  41.  
  42. nav a:hover {
  43. color: #d0d;
  44. }
  45.  
  46. article {
  47. background-color:#dbdbea;
  48. width: 99.9%;
  49. height: 570px;
  50. position: relative;
  51. font-family: Arial,Helvetica,sans-serif;
  52. font-weight: bold;
  53. color: #535362;
  54. border: solid black 0.5px;
  55. }
  56.  
  57. article form {
  58. padding-top: 10px;
  59. text-align: center;
  60.  
  61. }
  62.  
  63. article ul {
  64. list-style-type: none;
  65. }
  66.  
  67. article input {
  68. border-radius: 3px 6px;
  69. border: 1px solid #999;
  70. font-size: 16px;
  71. width: 250px;
  72. height: 25px;
  73. }
  74.  
  75. article select {
  76. width: 80px;
  77.  
  78. }
  79.  
  80. article hr {
  81. width: 700px;
  82. border: 0;
  83. height: 1px;
  84. background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  85. background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  86. background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  87. background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  88. }
  89.  
  90. #news {
  91. background-color: #dbdbea;
  92. border: solid black 0.5px;
  93. width: 99.9%;
  94. height: 100%;
  95. }
  96.  
  97. #news h3 {
  98. color: #2e7d92;
  99. font-size: 22px;
  100. text-align: center;
  101. font-family: sans-serif, Arial, helvetica;
  102. }
  103. #news p {
  104. color: #535362;
  105. margin-left: 30px;
  106. margin-right: 30px;
  107. font-size: 18px;
  108. }
  109. #news li {
  110. font-weight: bold;
  111. }
  112.  
  113. #news span {
  114. color: #535362;
  115. margin-left: 30px;
  116. margin-right: 30px;
  117. font-size: 18px;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement