aboutsummaryrefslogtreecommitdiffstats
path: root/assets/button.css
blob: 54e995b2876a28091d4a08b1deecbe7428b79ae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.bigbutton {
   -webkit-transition: all 0.3s cubic-bezier(0.19,1,0.22,1);
   -o-transition: all 0.3s cubic-bezier(0.19,1,0.22,1);
   transition: all 0.3s cubic-bezier(0.19,1,0.22,1);
   font-family: "Titillium",sans-serif;
   font-weight: 700;
   font-size: 14px;
   -webkit-clip-path: polygon(8px 0%,100% 0%,100% calc(100% - 8px),calc(100% - 8px) 100%,0% 100%,0% 8px,8px 0%);
   clip-path: polygon(8px 0%,100% 0%,100% calc(100% - 8px), calc(100% - 8px) 100%,0% 100%,0% 8px,8px 0%);
   text-decoration: none;
   letter-spacing: 0.02em;
   background: #41cd52;
   color: #fff;
   display: inline-block;
   -webkit-transform: scale3d(1.00001,1.00001,1.00001);
   transform: scale3d(1.00001,1.00001,1.00001);
   border: none;
   border-radius: 0px;
   cursor: pointer;
   width: 60%;
   margin: 0 auto;
}

.bigbutton:hover {
   background-color: gray;
}