Ifeanyi commited on
Commit
e3c9f1e
1 Parent(s): 210a29b

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +52 -0
style.css CHANGED
@@ -164,3 +164,55 @@ box-shadow: #670e94 0 3px 7px inset;
164
  transform: translateY(2px);
165
  }
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  transform: translateY(2px);
165
  }
166
 
167
+ /* Info button */
168
+ #info {
169
+ margin-left: -80px;
170
+ position: absolute;
171
+ }
172
+
173
+ #info {
174
+ align-items: center;
175
+ appearance: none;
176
+ background-image: radial-gradient(100% 100% at 100% 0, #b615e7 0, #9f0be4 100%);
177
+ border: 0;
178
+ border-radius: 6px;
179
+ box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
180
+ box-sizing: border-box;
181
+ color: #fff;
182
+ cursor: pointer;
183
+ display: inline-flex;
184
+ font-family: "JetBrains Mono",monospace;
185
+ height: 48px;
186
+ justify-content: center;
187
+ line-height: 1;
188
+ list-style: none;
189
+ overflow: hidden;
190
+ padding-left: 16px;
191
+ padding-right: 16px;
192
+ position: relative;
193
+ text-align: left;
194
+ text-decoration: none;
195
+ transition: box-shadow .15s,transform .15s;
196
+ user-select: none;
197
+ -webkit-user-select: none;
198
+ touch-action: manipulation;
199
+ white-space: nowrap;
200
+ will-change: box-shadow,transform;
201
+ font-size: 18px;
202
+ }
203
+
204
+ #info:focus {
205
+ box-shadow: #670e94 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #670e94 0 -3px 0 inset;
206
+ }
207
+
208
+ #info:hover {
209
+ box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #670e94 0 -3px 0 inset;
210
+ transform: translateY(-2px);
211
+ }
212
+
213
+ #info:active {
214
+ box-shadow: #670e94 0 3px 7px inset;
215
+ transform: translateY(2px);
216
+ }
217
+
218
+