-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoc.css
More file actions
63 lines (63 loc) · 1.56 KB
/
Copy pathsoc.css
File metadata and controls
63 lines (63 loc) · 1.56 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
58
59
60
61
62
63
.soc-marker,
.soc-marker * {
margin: 0;
padding: 0;
}
.soc-marker {
position: fixed;
width: auto;
/*min-width: 24px;*/
/*max-width: 280px;*/
/*min-height: 24px;*/
right: 6px;
margin: 0px;
/*padding: 4px 8px;*/
/*border-radius: 4px;*/
box-sizing: border-box;
font-family: helvetica, arial, sans-serif;
/*font-size: 11px;*/
/*line-height: 1.5em;*/
text-transform: capitalize;
color: #f1f1f1;
/*background-color: #87d3ff;*/
box-shadow: 0px 0px 2px rgba( 28, 28, 28, 0.88);
transition-property: opacity, box-shadow;
transition-duration: 200ms;
transition-timing-function: ease-out;
cursor: pointer;
}
.soc-marker::before {
content: "";
position: absolute;
width: 0;
height: 0;
top: 8px;
right: -8px;
/*border: 5.5px solid #87d3ff;*/
/*border-top-color: transparent;*/
/*border-right-color: transparent;*/
/*border-bottom-color: transparent;*/
}
.soc-marker.special::before {
content: "";
position: absolute;
width: 0;
height: 0;
top: 8px;
right: -8px;
/*border: 5.5px solid #ff9900;*/
/*border-top-color: transparent;*/
/*border-right-color: transparent;*/
/*border-bottom-color: transparent;*/
}
.soc-marker:hover {
color: #282828;
background-color: #f1f1f1;
box-shadow: 0px 0px 6px rgba( 28, 28, 28, 0.8);
}
.soc-marker:hover::before {
border-left-color: #919191;
}
.soc-marker:hover:active {
box-shadow: 0px 0px 4px rgba( 28, 28, 28, 0.8);
}