fluffy – Diff between revs 1 and 6

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 6
Line 14... Line 14...
14 overflow: hidden; 14 overflow: hidden;
15 background-color: #000; 15 background-color: #000;
16 } 16 }
Line 17... Line 17...
17   17  
18 .add { 18 .add {
19 background: url('/img/plus.png'); 19 display:block;
20 cursor: pointer; 20 width:50px;
21 width:64px; 21 height:50px;
-   22 line-height:50px;
-   23 border: 2px solid #f5f5f5;
22 height:64px; 24 border-radius: 50%;
23 position:fixed; 25 color:#f5f5f5;
-   26 text-align:center;
-   27 text-decoration:none;
-   28 background: #464646;
24 padding:7px; 29 box-shadow: 0 0 3px gray;
25 top:0; 30 font-size:20px;
26 right:0; 31 font-weight:bold;
27 max-width:128px; 32 right:0px;
-   33 z-index:999;
-   34 padding:0;
-   35 top:0;
-   36 position:fixed;
28 z-index:999; 37 cursor: pointer;
29 } -  
30   38 }
31 .add:hover { 39 .add:hover {
-   40 background: #262626;
-   41 cursor: pointer;
-   42 }
-   43  
-   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 {
32 background: url('/img/plus_click.png'); 66 background: #262626;
33 cursor: pointer; 67 cursor: pointer;
Line 34... Line 68...
34 } 68 }
35   69