Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. html {
  2. font-size: 17px;
  3. }
  4.  
  5. .float-left {
  6. float: left;
  7. }
  8.  
  9. .float-right {
  10. float: right;
  11. }
  12.  
  13. #outer-frame {
  14. width: 500px;
  15. height: 500px;
  16. background-color: #C8C8C8;
  17. background-repeat:
  18. no-repeat,
  19. no-repeat,
  20. no-repeat,
  21. no-repeat,
  22.  
  23. repeat-x,
  24. repeat-y,
  25. repeat-y,
  26. repeat-x;
  27. background-position:
  28. top left,
  29. top right,
  30. bottom right,
  31. bottom left,
  32.  
  33. center top,
  34. left center,
  35. right center,
  36. center bottom;
  37.  
  38. padding-top: 140px;
  39. padding-left: 150px
  40. }
  41.  
  42. .blue {
  43. background-image:
  44. url('images/blue/tl.png'),
  45. url('images/blue/tr.png'),
  46. url('images/blue/br.png'),
  47. url('images/blue/bl.png'),
  48.  
  49. url('images/blue/t.png'),
  50. url('images/blue/l.png'),
  51. url('images/blue/r.png'),
  52. url('images/blue/b.png');
  53. }
  54.  
  55. .red {
  56. background-image:
  57. url('images/red/tl.png'),
  58. url('images/red/tr.png'),
  59. url('images/red/br.png'),
  60. url('images/red/bl.png'),
  61.  
  62. url('images/red/t.png'),
  63. url('images/red/l.png'),
  64. url('images/red/r.png'),
  65. url('images/red/b.png');
  66. }
  67.  
  68. .yellow {
  69. background-image:
  70. url('images/yellow/tl.png'),
  71. url('images/yellow/tr.png'),
  72. url('images/yellow/br.png'),
  73. url('images/yellow/bl.png'),
  74.  
  75. url('images/yellow/t.png'),
  76. url('images/yellow/l.png'),
  77. url('images/yellow/r.png'),
  78. url('images/yellow/b.png');
  79. }
  80.  
  81. #inner-frame {
  82. background: #0c0;
  83. border-radius: 10px;
  84. width: 330px;
  85. height: 330px;
  86. box-shadow: 10px 10px 5px black;
  87. }
  88.  
  89. p {
  90. padding: 5px;
  91. }
  92.  
  93. #selector {
  94. width: 640px;
  95. text-align: center;
  96. }
  97.  
  98. #goleft {
  99. float: left;
  100. margin-top: 100px;
  101. }
  102.  
  103. #goright {
  104. float: right;
  105. margin-top: 100px;
  106. }
  107.  
  108. #selector div {
  109. display: inline-block;
  110. }
  111.  
  112. #selector div img:last-child {
  113. display: none;
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement