-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 981 Bytes
/
style.css
File metadata and controls
41 lines (36 loc) · 981 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap');
body{
background: #fcfcfd;
}
.btn{
background-color: #fcfcfd;
border-radius: 4px;
border-width: 0;
box-shadow: rgb(45, 35, 66, .4) 0 2px 4px ,
rgb(45, 35, 66, .3) 0 7px 13px -3px,
#d6d6e7 0 -3px 0 inset;
cursor: pointer;
color: #36295a;
height: 48px;
padding-left: 16px;
padding-right: 16px;
transition: .2s;
font-size: 18px;
font-family: 'JetBrains Mono', monospace;
}
.btn:focus{
box-shadow: #d6d6e7 0 0 0 1.5px inset,
rgb(45, 35, 66, .4) 0 2px 4px,
rgb(45, 35, 66, .3) 0 7px 13px -3px,
#d6d6e7 0 -3px 0 inset;
}
.btn:hover{
box-shadow: rgb(45, 35, 66, .4) 0 4px 8px ,
rgb(45, 35, 66, .3) 0 7px 13px -3px,
#d6d6e7 0 -3px 0 inset;
transform: translateY(-2px);
}
.btn:active{
box-shadow: #d6d6e7 0 3px 7px inset;
transform: translateY(2px);
}