Advertisement
thematchgirl

siggy #2 css

Dec 7th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.06 KB | None | 0 0
  1.  
  2. #sig{
  3.     margin:75px auto;
  4.     width:350px;
  5.     position:relative;
  6. }
  7. #lines,#square{
  8.     overflow:hidden;
  9.     z-index:-1
  10. }
  11. #lines,#rand,#square{
  12.     z-index:-1
  13. }
  14. .bubble,.bubble:before{
  15.     -webkit-box-shadow:16px 0 0 0 var(--second-color);
  16.     -moz-box-shadow:16px 0 0 0 var(--second-color)
  17. }
  18. #sig h2 span,.bubble:after,.bubble:before,.line:after,.line:before{
  19.     content:""
  20. }
  21. #links,#quote,#sig h2{
  22.     text-align:center
  23. }
  24. #square{
  25.     width:280px;
  26.     height:280px;
  27.     transform:rotate(45deg);
  28.     position:absolute;
  29.     left:55px;
  30.     top:-10px
  31. }
  32. .bubble,.bubble:after,.bubble:before{
  33.     width:8px;
  34.     height:8px;
  35.     border-radius:100%;
  36.     display:inline-block;
  37.     background:var(--first-color)
  38. }
  39. .bubble{
  40.     position:relative;
  41.     margin-right:46px;
  42.     margin-left:46px;
  43.     margin-bottom:10px;
  44.     box-shadow:16px 0 0 0 var(--second-color)
  45. }
  46. #lines,#rand,.bubble:after,.bubble:before{
  47.     position:absolute
  48. }
  49. .bubble:before{
  50.     left:-32px;
  51.     box-shadow:16px 0 0 0 var(--second-color)
  52. }
  53. .bubble:after{
  54.     right:-32px;
  55.     -webkit-box-shadow:16px 0 0 0 var(--second-color);
  56.     -moz-box-shadow:16px 0 0 0 var(--second-color);
  57.     box-shadow:16px 0 0 0 var(--second-color)
  58. }
  59. #links a,#placeholder{
  60.     border:1px solid var(--second-color)
  61. }
  62. #placeholder{
  63.     width:350px;
  64.     height:150px;
  65.     background:var(--image) center no-repeat;
  66.     padding:5px
  67. }
  68. #sig h2{
  69.     font-family:Bangers,cursive;
  70.     font-size:2em;
  71.     margin:0 0 -10px;
  72.     color:var(--second-color);
  73.     text-shadow:-2px -2px 0 rgba(0,0,0,1);
  74.     letter-spacing:3px
  75. }
  76. #sig h2 span{
  77.     border-bottom:20px solid var(--first-color);
  78.     display:inline-block;
  79.     height:15px;
  80.     padding:0 1em
  81. }
  82. #quote{
  83.     background:var(--first-color);
  84.     font-family:Poppins,sans-serif;
  85.     color:#ffff;
  86.     font-size:8px;
  87.     width:80%;
  88.     margin:-20px auto 0;
  89.     padding:.5em 1em;
  90.     text-transform:uppercase;
  91.     line-height:10px
  92. }
  93. #rand{
  94.     width:50px;
  95.     height:50px;
  96.     background:var(--second-color);
  97.     -webkit-clip-path:polygon(50% 0,89% 15%,100% 61%,61% 96%,17% 75%,0 41%,26% 30%);
  98.     clip-path:polygon(50% 0,89% 15%,100% 61%,61% 96%,17% 75%,0 41%,26% 30%);
  99.     left:-20px;
  100.     top:40px
  101. }
  102. #lines{
  103.     width:100px;
  104.     height:100px;
  105.     right:-20px;
  106.     bottom:30px
  107. }
  108. .line{
  109.     height:1px;
  110.     background:var(--first-color);
  111.     margin-bottom:40px;
  112.     position:relative;
  113.     -webkit-box-shadow:0 6px 0 0 var(--first-color);
  114.     -moz-box-shadow:0 6px 0 0 var(--first-color);
  115.     box-shadow:0 6px 0 0 var(--first-color)
  116. }
  117. .line:after,.line:before{
  118.     position:absolute;
  119.     top:12px;
  120.     height:.5px;
  121.     background:var(--first-color);
  122.     display:block;
  123.     width:100%;
  124.     -webkit-box-shadow:0 6px 0 0 var(--first-color);
  125.     -moz-box-shadow:0 6px 0 0 var(--first-color);
  126.     box-shadow:0 6px 0 0 var(--first-color)
  127. }
  128. .line:after{
  129.     top:25px;
  130.     height:1px
  131. }
  132. #links{
  133.     margin-top:10px
  134. }
  135. #links a{
  136.     display:inline-block;
  137.     background:#fff;
  138.     width:10px;
  139.     height:10px;
  140.     margin:0 3px
  141. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement