ebrowne commited on
Commit
cc85f83
·
verified ·
1 Parent(s): a7e2ba1

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +34 -0
style.css CHANGED
@@ -17,6 +17,7 @@ p {
17
 
18
  li {
19
  font-size: 16px;
 
20
  }
21
 
22
  input {
@@ -37,3 +38,36 @@ input {
37
  .card p:last-child {
38
  margin-bottom: 0;
39
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  li {
19
  font-size: 16px;
20
+ color: gray;
21
  }
22
 
23
  input {
 
38
  .card p:last-child {
39
  margin-bottom: 0;
40
  }
41
+
42
+ button {
43
+ background: rgb(9,72,121);
44
+ background: linear-gradient(135deg, rgba(15,99,218,1) 0%, rgba(0,191,255,1) 100%);
45
+ border: none;
46
+ font-size: 20px;
47
+ color: #FFFFFF;
48
+ padding: 8px;
49
+ width: 150px;
50
+ text-align: center;
51
+ transition-duration: 0.4s;
52
+ text-decoration: bold;
53
+ }
54
+
55
+ button:after {
56
+ content: "";
57
+ background: #f1f1f1;
58
+ display: block;
59
+ position: absolute;
60
+ padding-top: 300%;
61
+ padding-left: 350%;
62
+ margin-left: -20px !important;
63
+ margin-top: -120%;
64
+ opacity: 0;
65
+ transition: all 0.8s
66
+ }
67
+
68
+ button:active:after {
69
+ padding: 0;
70
+ margin: 0;
71
+ opacity: 1;
72
+ transition: 0s
73
+ }