fluffy – Blame information for rev 7

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 * {
2 font-family: 'Oswald, Arial, sans-serif';
3 margin: 0;
4 padding: 0;
5 border: 0;
6 outline: 0;
7 font-size: 100%;
8 vertical-align: baseline;
9 background: transparent;
10 box-sizing: border-box;
11 }
12  
13 body {
14 overflow: hidden;
15 background-color: #000;
16 }
17  
18 .add {
6 office 19 display:block;
20 width:50px;
21 height:50px;
22 line-height:50px;
23 border: 2px solid #f5f5f5;
24 border-radius: 50%;
25 color:#f5f5f5;
26 text-align:center;
27 text-decoration:none;
28 background: #464646;
29 box-shadow: 0 0 3px gray;
30 font-size:20px;
31 font-weight:bold;
32 right:0px;
33 z-index:999;
34 padding:0;
7 office 35 top:7px;
36 right:7px;
6 office 37 position:fixed;
1 office 38 cursor: pointer;
7 office 39 -webkit-touch-callout: none; /* iOS Safari */
40 -webkit-user-select: none; /* Safari */
41 -khtml-user-select: none; /* Konqueror HTML */
42 -moz-user-select: none; /* Firefox */
43 -ms-user-select: none; /* Internet Explorer/Edge */
44 user-select: none; /* Non-prefixed version, currently
45 supported by Chrome and Opera */
1 office 46 }
47 .add:hover {
6 office 48 background: #262626;
1 office 49 cursor: pointer;
50 }
51  
6 office 52 .remove {
53 display:block;
54 width:50px;
55 height:50px;
56 line-height:50px;
7 office 57 font-weight: bold;
6 office 58 border: 2px solid #f5f5f5;
59 border-radius: 50%;
60 color:#f5f5f5;
61 text-align:center;
62 text-decoration:none;
63 background: #464646;
64 box-shadow: 0 0 3px gray;
65 font-size:20px;
66 font-weight:bold;
7 office 67 right:71px;
6 office 68 z-index:999;
7 office 69 top:7px;
6 office 70 position:fixed;
71 cursor: pointer;
7 office 72 -webkit-touch-callout: none; /* iOS Safari */
73 -webkit-user-select: none; /* Safari */
74 -khtml-user-select: none; /* Konqueror HTML */
75 -moz-user-select: none; /* Firefox */
76 -ms-user-select: none; /* Internet Explorer/Edge */
77 user-select: none; /* Non-prefixed version, currently
78 supported by Chrome and Opera */
6 office 79 }
80 .remove:hover {
81 background: #262626;
82 cursor: pointer;
83 }
84