-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (43 loc) · 810 Bytes
/
Copy pathstyles.css
File metadata and controls
48 lines (43 loc) · 810 Bytes
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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
background: black;
color: white;
transition: all 0.12s ease;
}
section {
display: flex;
flex-direction: column;
align-items: center;
background-color: rgba(0, 0, 0, .12);
height: 100vh;
width: 100%;
}
header {
margin-top: 40px;
text-align: center;
width: 100%;
height: auto;
}
p {
padding-inline: 10px;
}
button {
padding: 10px;
width: 50px;
height: 50px;
margin: 80px auto;
background: rgba(0, 0, 0, .4);
border-radius: 100%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, .12);
cursor: pointer;
font-weight: bold;
border: 1px solid #333;
color: white;
outline: none;
}
button:hover {
transform: scale(1.2);
}