-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
49 lines (44 loc) · 1.32 KB
/
style.scss
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
@import url("https://use.typekit.net/bfi5ifi.css");
html {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(236, 224, 193);
}
button {
padding: 1rem 2rem;
font-family: lust-display,serif;
font-weight: 700;
font-style: normal;
font-size: 48px;
letter-spacing: 6px;
background-clip: text;
color: rgb(255, 255, 255);
text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.2),
1px 1px 1px rgba(0, 0, 0, 0.6);
background: rgb(255,69,0);
background: linear-gradient(290deg, rgba(255,69,0,1) 0%, rgba(251,246,0,1) 100%);
color: #fff;
border-radius: 30px;
border: solid 3px;
border-color: rgba(255,69,0,1) rgba(251,246,0,1) rgba(251,246,0,1)rgba(255,69,0,1);
box-shadow: 2px 8px 15px rgba(0, 0, 0, 0.1);
}
button:hover {
background: rgb(255,69,0);
background: linear-gradient(140deg, rgba(255,69,0,1) 0%, rgba(251,246,0,1) 100%);
cursor: pointer;
border-color: rgba(251,246,0,1) rgba(255,69,0,1)rgba(255,69,0,1) rgba(251,246,0,1);
box-shadow: 0px 5px 15px rgba(255,69,0, 0.4);
}
button:active {
background: rgb(255,69,0);
border: solid 4px;
border-color: rgba(251,246,0,1);
box-shadow: inset 0 0 30px rgb(114, 20, 1);
}