-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (56 loc) · 1.35 KB
/
Copy pathstyle.css
File metadata and controls
57 lines (56 loc) · 1.35 KB
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
50
51
52
53
54
55
56
57
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
background-color: rgb(36, 36, 36);
}
.button-container {
border: 2px solid black;
padding: 1.2rem;
box-shadow: inset 0 2rem 2rem -1.5rem rgba(255, 255, 255, 0.474);
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}
button {
border: 2px solid black;
outline: none;
background: linear-gradient(to top, #333, rgb(104, 104, 104));
padding: 2.5rem;
font-size: 3rem;
border-radius: 10px;
box-shadow: inset 0 2rem 2rem -1rem rgba(255, 255, 255, 0.274),
0 1.2rem 1.2rem 0 rgba(0, 0, 0, 0.818);
color: white;
text-shadow: 0 1px 0 black;
font-weight: lighter;
font-family: "Times New Roman", Times, serif;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
cursor: pointer;
}
button:hover {
background: linear-gradient(to bottom, #333, rgb(104, 104, 104));
}
button:active {
transform: translateY(3px);
-webkit-transform: translateY(3px);
-moz-transform: translateY(3px);
-ms-transform: translateY(3px);
-o-transform: translateY(3px);
box-shadow: 0 0.6rem 0.6rem 0 rgba(0, 0, 0, 0.818);
}