-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
45 lines (39 loc) · 983 Bytes
/
styles.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
41
42
43
44
45
@import url("https://fonts.googleapis.com/css?family=Barlow&display=swap");
html {
box-sizing: border-box;
}
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: rgb(43, 37, 99)
}
.button-container {
border: 2px solid rgb(31, 7, 95);
padding: 10px;
border-radius: 7px;
box-shadow: inset 0 20px 4px -19px rgba(121, 86, 218, 0.7);
}
button {
cursor: pointer;
outline: none;
width: 120px;
height: 75px;
font-family: Barlow, sans-serif;
font-size: 25px;
color: white;
text-shadow: 0 2px 5px rgb(59, 111, 189);
background: linear-gradient(to top, #a698e4, #ada5da);
border: 2px solid black;
border-radius: 7px;
box-shadow: inset 0 20px 4px -19px rgba(52, 40, 75, 0.4), 0 12px 12px 0 rgba(43, 27, 85, 0.3);
}
button:hover {
background: linear-gradient(to bottom, #a090ce, #e2e4fa);
}
button:active {
transform: translateY(3px);
box-shadow: 0 6px 6px 0 rgba(38, 18, 102, 0.3);
}