fluffy – Blame information for rev 6

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;
35 top:0;
36 position:fixed;
1 office 37 cursor: pointer;
38 }
39 .add:hover {
6 office 40 background: #262626;
1 office 41 cursor: pointer;
42 }
43  
6 office 44 .remove {
45 display:block;
46 width:50px;
47 height:50px;
48 line-height:50px;
49 border: 2px solid #f5f5f5;
50 border-radius: 50%;
51 color:#f5f5f5;
52 text-align:center;
53 text-decoration:none;
54 background: #464646;
55 box-shadow: 0 0 3px gray;
56 font-size:20px;
57 font-weight:bold;
58 right:64px;
59 z-index:999;
60 padding:0;
61 top:0;
62 position:fixed;
63 cursor: pointer;
64 }
65 .remove:hover {
66 background: #262626;
67 cursor: pointer;
68 }
69  
1 office 70 .service-icon {
71 background-image: url("/img/blueprint.png");
72 /*background-repeat: repeat;*/
73 width:72px;
74 height:72px;
75 }