-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (50 loc) · 1.2 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
html {
box-sizing: border-box;
}
body {
margin: 0;
height: 100vh;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #5c5c5c;
font-family: Roboto, sans-serif;
color: whitesmoke;
flex-direction: column;
}
.button-container {
background: #5c5c5c;
box-shadow: 19px 19px 38px #4e4e4e,
-19px -19px 38px #6a6a6a;
align-items: center;
border-radius: 50px;
display: flex;
height: 200px;
justify-content: center;
/* margin-right: 4rem; */
width: 200px;
transition: all .2s ease-in-out;
}
button {
font-family: Roboto, sans-serif;
font-size: 2rem;
padding: 20px 35px;
border: none;
background: none;
color: whitesmoke;
text-shadow: 0 2px 5px rgb(65, 64, 64);
cursor: pointer;
transition: all .2s ease-in-out;
}
.button-container:hover {
background: linear-gradient(145deg, #535353, #626262);
box-shadow: 8px 8px 16px #4e4e4e,
-8px -8px 16px #6a6a6a;
}
h1 {
padding-bottom: 60px;
font-size: 2rem;
color: rgba(245, 245, 245, 0.336);
}