-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
40 lines (39 loc) · 1008 Bytes
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave&display=swap');
html{
box-sizing: border-box;
}
body{
margin:0;
height:100vh;
display: flex;
justify-content: center;
align-items: center;
background: rgb(31, 22, 22);
}
.button-container{
border:2px solide black;
padding: 10px;
border-radius: 15px;
box-shadow:inset 10px 15px 10px -16px rgba(255, 255, 255, 0.7);
}
button{
cursor: pointer;
outline: none;
width:120px;
height: 75px;
font-family: 'Sedgwick Ave', cursive;
font-size: 25px;
color: white;
text-shadow: 0 3px 8px black;
background:linear-gradient(to top,#332b2b,#999797);
border:2px solid black;
box-shadow: 7px;
box-shadow:inset 0 20px 4px -19px rgba(255, 255, 255, 0.7),0 12px 12px 0 rgba(0, 0, 0, 0.3);
}
button:hover{
background:linear-gradient(to bottom,#696969,#545454);
}
button:active{
transform:translateY(3px);
box-shadow:inset 0 6px 6px 0 rgba(0, 0, 0, 0.3);
}