-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (96 loc) · 2.84 KB
/
index.html
File metadata and controls
120 lines (96 loc) · 2.84 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<html>
<head>
<title>Stripe - Connect Buttons</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<a href="#" class="stripe-connect"><span>Connect with Stripe</span></a>
<br />
<br />
<a href="#" class="stripe-connect dark"><span>Connect with Stripe</span></a>
<br />
<br />
<a href="#" class="stripe-connect light-blue"><span>Connect with Stripe</span></a>
<br />
<br />
<a href="#" class="stripe-connect light-blue dark"><span>Connect with Stripe</span></a>
<div>
<div class="highlight highlight-css"><pre>
.stripe-connect {
margin: 5px 10px;
display: inline-block;
margin-bottom: 1px;
background-image: -webkit-linear-gradient(#28A0E5, #015E94);
background-image: -moz-linear-gradient(#28A0E5, #015E94);
background-image: -ms-linear-gradient(#28A0E5, #015E94);
background-image: linear-gradient(#28A0E5, #015E94);
-webkit-font-smoothing: antialiased;
border: 0;
padding: 1px;
height: 30px;
text-decoration: none;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
cursor: pointer;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.stripe-connect span {
display: block;
position: relative;
padding: 0 12px 0 44px;
height: 30px;
background: #1275FF;
background-image: -webkit-linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
background-image: -moz-linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
background-image: -ms-linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
background-image: linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
font-size: 14px;
line-height: 30px;
color: white;
font-weight: bold;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.stripe-connect span:before {
content: '';
display: block;
position: absolute;
left: 11px;
top: 50%;
width: 23px;
height: 24px;
margin-top: -12px;
background-repeat: no-repeat;
background-size: 23px 24px;
}
</pre>
</div>
Available Styles:<br>
<br>
Blue Light Version:<br>
<br>
<img src="assets/img/blue-on-light/blue-on-light@3x.png"><br>
<img src="assets/img/blue-on-light/blue-on-light@2x.png"><br>
<img src="assets/img/blue-on-light/blue-on-light.png"><br>
<br>
White Simple Version:<br>
<br>
<img src="assets/img/light-on-light/light-on-light@3x.png"><br>
<img src="assets/img/light-on-light/light-on-light@2x.png"><br>
<img src="assets/img/light-on-light/light-on-light.png"><br>
</div>
</body>
</html>