Advertisement
martawijaya

Untitled

Jan 2nd, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.41 KB | None | 0 0
  1. .wrapper-404 {
  2.   position: absolute;
  3.   left: 50%;
  4.   top: 50%;
  5.   transform: translate(-50%, -50%);
  6.   text-align: center;
  7.   margin-left: 200px;
  8.   z-index: 99999
  9. }
  10.  
  11. .wrapper-404 h1 {
  12.   font-size: 120px;
  13.   display: inline-block;
  14.   position: relative;
  15.   background: transparent;
  16.   transition: all 500ms ease;
  17. }
  18.  
  19. .wrapper-404 h1:before  {
  20.   content: "";
  21.   width: 5px;
  22.   height: 150px;
  23.   background: #c09952;
  24.   display: block;
  25.   position: absolute;
  26.   top: 0%;
  27.   transform: translate(0px, 0%) rotate(20deg);
  28. }
  29.  
  30.  
  31. .wrapper-404 h1:before{
  32.   left: 50%;
  33. }
  34.  
  35.  
  36. .wrapper-404 p {
  37.   font-size: 30px;
  38.   text-transform: uppercase;
  39. }
  40.  
  41. .suggest-page p {
  42.   font-size: 18px
  43. }
  44.  
  45. .button-page a {
  46.   display: inline-block;
  47.   text-transform: uppercase;
  48.   color: #C09952;
  49.   font-weight: 600;
  50.   font-size: 15px;
  51.   position: relative;
  52.   -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  53.   clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  54.   padding: 5px 25px;
  55.   transition: all 300ms;
  56. }
  57.  
  58. .button-page a:before, .button-page a:after {
  59.   content: '';
  60.   position: absolute;
  61.   top: 0;
  62.   height: 100%;
  63.   border-left: 1px solid #C09952;
  64.   -webkit-transform: rotate(24deg);
  65.   transform: rotate(24deg);
  66. }
  67.  
  68. .button-page a:before {
  69.   left: 7px;
  70. }
  71.  
  72. .button-page a:after {
  73.   right: 7px;
  74. }
  75.  
  76. .button-page a:hover {
  77.   background-color: #C09952;
  78.   color: #FFF;
  79.   text-decoration: none;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement