Advertisement
Guest User

Untitled

a guest
Mar 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1.  
  2. /* This is a partial blocks.css, you need to add more rules
  3.    to this file to complete the assignment.  Do not add any CSS
  4.    styling to the original index.htm / start.htm */
  5.  
  6. body {
  7.     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  8. }
  9.  
  10. /* Here is one of many  CSS rules you will need... */
  11. #one {
  12.   border: 5px solid blue;
  13.   position: fixed;
  14.   padding: 5px;
  15.   margin: 5px;
  16.   width: 25%;
  17.   right: 30px;
  18.   bottom :30px;
  19. }
  20.  
  21. #two {
  22.   border: 5px solid green;
  23.   position: fixed;
  24.   padding: 5px;
  25.   margin: 5px;
  26.   width: 25%;
  27.   right: 30px;
  28.   top :30px;
  29. }
  30.  
  31. #three {
  32.   border: 5px solid orange;
  33.   position: fixed;
  34.   padding: 5px;
  35.   margin: 5px;
  36.   width: 25%;
  37.   left: 30px;
  38.   top :30px;
  39. }
  40.  
  41. #four {
  42.   border: 5px solid yellow;
  43.   position: fixed;
  44.   padding: 5px;
  45.   margin: 5px;
  46.   width: 25%;
  47.   left: 30px;
  48.   bottom :30px;
  49. }
  50.  
  51. #link {
  52.   position: relative;
  53.   top: 21px;
  54.   text-align: center;
  55. }
  56.  
  57. a {
  58.   font-family: helvetica neue,Helvetica,Arial,sans-serif;
  59.   color: #fefefe;
  60.   background-color: #354eb1;
  61.   padding: 2px;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement