jeremy-london commited on
Commit
e422654
·
verified ·
1 Parent(s): fd0d41a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +292 -5
README.md CHANGED
@@ -1,10 +1,297 @@
1
  ---
2
  title: README
3
- emoji: 😻
4
- colorFrom: blue
5
- colorTo: red
6
- sdk: docker
7
  pinned: false
 
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  title: README
3
+ emoji: 📚
4
+ colorFrom: yellow
5
+ colorTo: yellow
6
+ sdk: static
7
  pinned: false
8
+ short_description: keeper-security org card
9
  ---
10
 
11
+ <style>
12
+ @font-face {
13
+ font-family: 'Outfit';
14
+ font-style: normal;
15
+ font-weight: 400;
16
+ font-display: swap;
17
+ src: url('https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2');
18
+ }
19
+
20
+ @font-face {
21
+ font-family: 'Outfit';
22
+ font-style: normal;
23
+ font-weight: 700;
24
+ font-display: swap;
25
+ src: url('https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2');
26
+ }
27
+
28
+ .keeper-wrapper {
29
+ font-family: 'Outfit', sans-serif;
30
+ max-width: 1200px;
31
+ margin: 0 auto;
32
+ padding: 0 20px;
33
+ }
34
+
35
+ .keeper-header {
36
+ background-color: #000000;
37
+ padding: 30px 20px;
38
+ text-align: center;
39
+ border-radius: 6px 6px 0 0;
40
+ }
41
+
42
+ .keeper-heading {
43
+ color: #FFFFFF;
44
+ border-bottom: 3px solid #FFCC00;
45
+ display: inline-block;
46
+ margin: 20px 0;
47
+ }
48
+
49
+ .keeper-card {
50
+ background-color: #FFFBEA;
51
+ border-left: 4px solid #FFCC00;
52
+ padding: 15px;
53
+ margin-bottom: 15px;
54
+ }
55
+
56
+ .keeper-card h3 {
57
+ margin-top: 0;
58
+ color: #000;
59
+ }
60
+
61
+ .keeper-dark-section {
62
+ background-color: #000000;
63
+ color: white;
64
+ padding: 20px;
65
+ border-radius: 4px;
66
+ margin: 20px 0;
67
+ }
68
+
69
+ .keeper-yellow {
70
+ color: #FFCC00;
71
+ }
72
+
73
+ /* Banner animation replacing video */
74
+ .banner-container {
75
+ position: relative;
76
+ overflow: hidden;
77
+ max-width: 800px;
78
+ height: 300px;
79
+ margin: 0 auto 30px;
80
+ border-radius: 6px;
81
+ box-shadow: 0 4px 8px rgba(0,0,0,0.2);
82
+ }
83
+
84
+ .banner-slide {
85
+ position: absolute;
86
+ top: 0;
87
+ left: 0;
88
+ width: 100%;
89
+ height: 100%;
90
+ opacity: 0;
91
+ transition: opacity 1s ease-in-out;
92
+ background-size: cover;
93
+ background-position: center;
94
+ }
95
+
96
+ .banner-slide:nth-child(1) {
97
+ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.keepersecurity.com/assets/images/home-hero-1.jpg');
98
+ animation: fade 15s infinite;
99
+ animation-delay: 0s;
100
+ }
101
+
102
+ .banner-slide:nth-child(2) {
103
+ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.keepersecurity.com/assets/images/pam-hero.jpg');
104
+ animation: fade 15s infinite;
105
+ animation-delay: 5s;
106
+ }
107
+
108
+ .banner-slide:nth-child(3) {
109
+ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.keepersecurity.com/assets/images/enterprise-hero.jpg');
110
+ animation: fade 15s infinite;
111
+ animation-delay: 10s;
112
+ }
113
+
114
+ .banner-content {
115
+ position: absolute;
116
+ top: 50%;
117
+ left: 50%;
118
+ transform: translate(-50%, -50%);
119
+ color: white;
120
+ text-align: center;
121
+ width: 80%;
122
+ }
123
+
124
+ .banner-content h3 {
125
+ color: #FFCC00;
126
+ margin-bottom: 15px;
127
+ font-size: 24px;
128
+ }
129
+
130
+ @keyframes fade {
131
+ 0% { opacity: 0; }
132
+ 10% { opacity: 1; }
133
+ 33% { opacity: 1; }
134
+ 44% { opacity: 0; }
135
+ 100% { opacity: 0; }
136
+ }
137
+
138
+ /* Logo carousel animation */
139
+ @keyframes slide {
140
+ 0% { transform: translateX(0); }
141
+ 100% { transform: translateX(-1200px); }
142
+ }
143
+
144
+ .logo-slider {
145
+ display: flex;
146
+ animation: slide 30s linear infinite;
147
+ width: max-content;
148
+ }
149
+
150
+ .logo-item {
151
+ margin: 0 20px;
152
+ text-align: center;
153
+ min-width: 100px;
154
+ }
155
+
156
+ .logo-item img {
157
+ display: block;
158
+ margin-left: auto;
159
+ margin-right: auto;
160
+ text-align: center;
161
+ }
162
+
163
+ .logo-item figcaption {
164
+ font-size: 12px;
165
+ margin-top: 5px;
166
+ color: white;
167
+ }
168
+ </style>
169
+
170
+ <div class="keeper-wrapper">
171
+ <div class="keeper-header" style="text-align: center;">
172
+ <img src="https://www.keepersecurity.com/assets/branding/keeper-logo-light.svg" alt="Keeper Security" width="300" style="display: block; margin-left: auto; margin-right: auto;">
173
+ <h2 class="keeper-heading">Next-Generation Privileged Access Management</h2>
174
+ </div>
175
+ <div style="text-align: center; margin: 30px 0;">
176
+ <div style="font-size: 20px; margin-bottom: 15px;">
177
+ <strong>Trusted by millions of users and thousands of organizations worldwide</strong>
178
+ </div>
179
+ <div style="display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;">
180
+ <div style="text-align: center;">
181
+ <div style="font-size: 32px; font-weight: bold; color: #FFCC00;">
182
+ 120+
183
+ </div>
184
+ <div>
185
+ Countries
186
+ </div>
187
+ </div>
188
+ <div style="text-align: center;">
189
+ <div style="font-size: 32px; font-weight: bold; color: #FFCC00;">
190
+ 300K+
191
+ </div>
192
+ <div>
193
+ 5-Star Reviews
194
+ </div>
195
+ </div>
196
+ <div style="text-align: center;">
197
+ <div style="font-size: 32px; font-weight: bold; color: #FFCC00;">
198
+ #1
199
+ </div>
200
+ <div>
201
+ Value Leader in PAM
202
+ </div>
203
+ </div>
204
+ </div>
205
+ </div>
206
+
207
+ <div class="keeper-dark-section">
208
+ <div style="overflow-x: scroll; position: relative; background-color: #121212; border-radius: 4px;">
209
+ <div class="logo-slider">
210
+ <figure class="logo-item">
211
+ <img alt="ISO" src="https://keepersecurity.com/assets/certifications/iso-white.svg" height="60" width="60">
212
+ <figcaption>
213
+ ISO 27001
214
+ </figcaption>
215
+ </figure>
216
+ <figure class="logo-item">
217
+ <img alt="SOC 2" src="https://keepersecurity.com/assets/certifications/aicpa-white.svg" height="60" width="60">
218
+ <figcaption>
219
+ SOC 2
220
+ </figcaption>
221
+ </figure>
222
+ <figure class="logo-item">
223
+ <img alt="FedRAMP" src="https://keepersecurity.com/assets/certifications/fedramp-white.svg" height="60" width="60">
224
+ <figcaption>
225
+ FedRAMP
226
+ </figcaption>
227
+ </figure>
228
+ <figure class="logo-item">
229
+ <img alt="GovRAMP" src="https://keepersecurity.com/assets/certifications/govramp-white.svg" height="60" width="60">
230
+ <figcaption>
231
+ GovRAMP
232
+ </figcaption>
233
+ </figure>
234
+ <figure class="logo-item">
235
+ <img alt="HIPAA" src="https://keepersecurity.com/assets/certifications/hipaa-white.svg" height="60" width="60">
236
+ <figcaption>
237
+ HIPAA
238
+ </figcaption>
239
+ </figure>
240
+ <figure class="logo-item">
241
+ <img alt="GDPR" src="https://keepersecurity.com/assets/certifications/gdpr-white.svg" height="60" width="60">
242
+ <figcaption>
243
+ GDPR
244
+ </figcaption>
245
+ </figure>
246
+ <figure class="logo-item">
247
+ <img alt="FDA" src="https://keepersecurity.com/assets/certifications/fda-white.svg" height="60" width="60">
248
+ <figcaption>
249
+ FDA 21 CFR
250
+ </figcaption>
251
+ </figure>
252
+ <figure class="logo-item">
253
+ <img alt="CMMC" src="https://keepersecurity.com/assets/certifications/cmmc-white.svg" height="60" width="60">
254
+ <figcaption>
255
+ CMMC
256
+ </figcaption>
257
+ </figure>
258
+ <figure class="logo-item">
259
+ <img alt="PCI" src="https://keepersecurity.com/assets/certifications/pci-white.svg" height="60" width="90">
260
+ <figcaption>
261
+ PCI DSS
262
+ </figcaption>
263
+ </figure>
264
+ <figure class="logo-item">
265
+ <img alt="TRUSTe" src="https://keepersecurity.com/assets/certifications/truste-white.svg" height="60" width="90">
266
+ <figcaption>
267
+ TRUSTe
268
+ </figcaption>
269
+ </figure>
270
+ <figure class="logo-item">
271
+ <img alt="FIPS 140-3" src="https://keepersecurity.com/assets/certifications/fips-140-3-white.svg" height="60" width="60">
272
+ <figcaption>
273
+ FIPS 140-3
274
+ </figcaption>
275
+ </figure>
276
+ <figure class="logo-item">
277
+ <img alt="ISO" src="https://keepersecurity.com/assets/certifications/iso-white.svg" height="60" width="60">
278
+ <figcaption>
279
+ ISO 27001
280
+ </figcaption>
281
+ </figure>
282
+ <figure class="logo-item">
283
+ <img alt="SOC 2" src="https://keepersecurity.com/assets/certifications/aicpa-white.svg" height="60" width="60">
284
+ <figcaption>
285
+ SOC 2
286
+ </figcaption>
287
+ </figure>
288
+ </div>
289
+ </div>
290
+ </div>
291
+ <div style="text-align: center; margin-top: 10px;">
292
+ <a href="https://www.keepersecurity.com/privileged-access-management/" style="background-color: #FFCC00; color: black; padding: 10px 25px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; margin-right: 10px;">Explore KeeperPAM</a> <a href="https://www.keepersecurity.com" style="background-color: #333; color: white; padding: 10px 25px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block;">Visit Website</a>
293
+ </div>
294
+ <div style="text-align: center; margin-top: 5px; color: #666; font-size: 12px;">
295
+ <p>© 2025 Keeper Security, Inc. All Rights Reserved.</p>
296
+ </div>
297
+ </div>