-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (34 loc) · 717 Bytes
/
style.css
File metadata and controls
40 lines (34 loc) · 717 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
.button {
display: inline-block;
margin: 50px;
width: 100px;
height: 100px;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 3px 15px rgba(0, 0, 0, .25);
}
.button:hover {
box-shadow: inset 0 0 15px rgba(0, 0, 0, .2);
}
.button:after {
content: '';
width: 100px;
height: 100px;
display: block;
opacity: .7;
}
.button-settings:after {
background: url(icons/icons8-settings-filled.png) center no-repeat;
background-size: 40%;
}
.button-photo:after {
background: url(icons/icons8-camera.png) center no-repeat;
background-size: 40%;
}
.button-link:after {
background: url(icons/icons8-link.png) center no-repeat;
background-size: 40%;
}
.button:hover:after {
background-position: center 52%;
}