projects.scss 1.86 KB
Newer Older
1
.projects {
2 3 4 5
  @extend .row;
  .activities {
  }

6
  .side {
7 8 9
    @extend .span4;
    @extend .right;

randx's avatar
randx committed
10
    .groups_box,
11 12
    .projects_box {
      h5 {
13 14 15
        color:$style_color;
        font-size:16px;
        text-shadow: 0 1px 1px #fff;
16
        padding: 2px 10px;
randx's avatar
randx committed
17 18
        line-height:32px;
        font-size:14px;
19
      }
20 21 22 23 24
      ul {
        li {
          padding:0;
          a {
            display:block;
randx's avatar
randx committed
25 26 27 28
            .group_name {
              font-size:14px;
              line-height:18px;
            }
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
            .project_name {
              color:#4fa2bd;
              font-size:14px;
              line-height:18px;
            }
            .arrow {
              float:right;
              padding:10px;
              margin:0;
            }
            .last_activity {
              padding-top:5px;
              display:block;
              span, strong {
                font-size:12px;
                color:#666;
              }
            }
          }
        }
      }
50 51 52 53 54
      @extend .leftbar;
      @extend .ui-box;
    }
  }
}
55

56 57 58
.new_project,
.edit_project {
  .project_name_holder {
59
    input,
60
    label {
61 62 63 64
      font-size:16px;
      line-height:20px;
      padding:8px;
    }
65
    label {
66 67
      color:#888;
    }
68
    .btn {
69
      padding:6px 10px;
70
      margin-left:10px;
Cyril's avatar
Cyril committed
71
      margin-bottom:8px;
72 73
    }
  }
74
  .adv_settings {
75
    h6 { margin-left:40px; }
76
  }
77
}
randx's avatar
randx committed
78 79 80 81 82 83

.project_clone_panel {
  @include border-radius(4px);
  @include bg-gray-gradient;
  padding: 4px 7px;
  border: 1px solid #CCC;
84
  margin-bottom:20px;
85 86 87
}

.project_clone_holder {
88
  input[type="text"],
89
  .btn {
90 91 92 93
    font-size:12px;
    line-height: 18px;
    margin: 0;
    padding: 3px 10px;
94
  }
95

96
  input[type="text"] {
randx's avatar
randx committed
97
    border: 1px solid #BBB;
98
    box-shadow: none;
99
    margin-left: -1px;
randx's avatar
randx committed
100 101
  }
}
102

103 104
.save-project-loader {
  img {
105 106 107
    margin-top:50px;
    margin-bottom:50px;
  }
108
  h3 {
109 110 111 112
    @extend .page_title;
  }

}