Advertisement
Guest User

CSS Circular Template

a guest
Oct 15th, 2015
773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. body { background:none; }
  2. #scroller { padding: 35px 0; box-sizing: border-box; }
  3. #profile-container { width:1000px;background:#333; }
  4. #profile-container {background: none;}
  5.  
  6. body {cursor: url(http://i.imgur.com/crzpCAJ.gif),auto; background: url(http://i.imgur.com/CTa2ONZ.jpg);}
  7.  
  8. /* scrollbar */
  9. ::-webkit-scrollbar { width: 5px; -moz-border-radius: 5px;
  10. border-radius: 5px;}
  11. ::-webkit-scrollbar-track { border-radius: 0px;
  12. background-color: #ebe3cc; }
  13. ::-webkit-scrollbar-thumb { border-radius: 0px;
  14. background-color: #8A8270; }
  15. /* end scrollbar */
  16.  
  17.  
  18. /* unvisited link */
  19. a:link {text-decoration: none; cursor: url(http://i.imgur.com/crzpCAJ.gif),auto;
  20. color: #000;
  21. }
  22.  
  23.  
  24. /* visited link */
  25. a:visited {
  26. color: #000;
  27. }
  28.  
  29. /* mouse over link */
  30. a:hover {
  31. background-color: yellow;
  32. }
  33.  
  34. /* selected link */
  35. a:active {
  36. color: #000;
  37. }
  38.  
  39.  
  40. .box {position: relative; margin: auto; width: 1000px; margin-left: 50px; top: 30px;}
  41.  
  42. .one {position: absolute; right: 0px;width: 400px; height: 400px; border-radius: 400px; background: url(http://i.imgur.com/FJygc7Q.jpg) no-repeat #ebe3cc; background-size: auto 120%; background-position: -20px -20px; border: 2px solid black; box-shadow: 0px 0px 3pt 6pt #ebe3cc;}
  43.  
  44. .two {border: 4px solid #ebe3cc; border-radius: 300px; width: 370px; height: 370px; margin: 12px;}
  45.  
  46. .three {position: absolute; left: -102px; top: 20px;width: 900px; border: 2px solid black; height: 360px; -moz-border-radius-bottomleft: 400px;
  47. border-bottom-left-radius: 400px; -moz-border-radius-topleft: 400px; border-top-left-radius: 400px; background: #ebe3cc;box-shadow: 3px 3px 3pt 3pt #ebe3cc; }
  48.  
  49. .four {position: absolute; left: 87px; border-top: 1px dashed black; border-bottom: 1px dashed black; top: 100px; text-align: justify; height: 190px; overflow: auto; width: 555px; padding: 10px; font-family: calibri; font-size: 13px; color: black;}
  50.  
  51. .swap{cursor: url(http://i.imgur.com/crzpCAJ.gif),auto;
  52. font-family: calibri;
  53. line-height: 11px;
  54. font-size: 12px;
  55. text-align: center;
  56. height: 11px;
  57. width: 130px;
  58. float: left;
  59. margin-right: 3px;
  60. padding-top: 1px;
  61. padding-bottom: 1px;
  62. margin-bottom: 3px;
  63. border-top: 1px solid #8A8270;
  64. border-bottom: 1px solid #8A8270;
  65. border-left: 5px solid #8A8270;
  66. border-right: 5px solid #8A8270;
  67. color: #ebe3cc;
  68. background-color: #655f51;
  69. display: block;
  70. -webkit-transition: all 0.5s ease;
  71. -moz-transition: all 0.5s ease;
  72. -o-transition: all 0.5s ease;
  73. border-radius: .5em;
  74.  
  75. }
  76.  
  77. .bottom {
  78. display: none;
  79. }
  80.  
  81. .swap:hover > .top{
  82. display: none;
  83. }
  84.  
  85. .swap:hover > .bottom {
  86. display: inline;
  87. }
  88.  
  89.  
  90. .swap:hover{cursor: url(http://i.imgur.com/crzpCAJ.gif),auto;
  91. width: 130px;
  92. font-size: 12px;
  93. text-align: center;
  94. color: #ebe3cc;
  95. background-color: #8A8270;
  96. border-top: 1px solid #655f51;
  97. border-bottom: 1px solid #655f51;
  98. border-left: 5px solid #655f51;
  99. border-right: 5px solid #655f51;
  100. line-height: 13px;
  101. font-family: calibri;
  102. letter-spacing: -1px;
  103. -webkit-transition: all 0.5s ease;
  104. -moz-transition: all 0.5s ease;
  105. -o-transition: all 0.5s ease;
  106. transform: rotateX(360deg);
  107. -moz-transform: rotateX(360deg);
  108. -webkit-transform: rotateX(360deg);
  109. -o-transform: rotateX(360deg);
  110. border-radius: .5em;
  111.  
  112. }
  113.  
  114.  
  115. #divswap {width: 600px; height: 10px; position: absolute; top: 50px; left: 90px;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement