projects.scss
549 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
.projects { 
  @extend .row;
  .activities {
  }
  .side { 
    @extend .span4;
    @extend .right;
    .projects_box { 
      h5 { 
        color:$style_color;
        font-size:16px;
        text-shadow: 0 1px 1px #fff;
      }
      @extend .leftbar;
      @extend .ui-box;
    }
  }
}
.new_project, 
.edit_project { 
  .project_name_holder { 
    input,
    label { 
      font-size:16px;
      line-height:20px;
      padding:8px;
    }
    label { 
      color:#888;
    }
    .btn { 
      padding:6px;
      margin-left:10px;
    }
  }
}