Ifeanyi commited on
Commit
04de3f6
1 Parent(s): d930716

Update style.css

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