Commit 6a3a49d6938eacaf1db79fdbb08b5efac921ffea

Authored by ValessioBrito
1 parent 63c5b6c7

ActionItem110: Default new layout



git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@738 3f533792-8f58-4932-b0fe-aaf55b0a4547
public/designs/templates/default/default.yml 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +title: "Default Style 3 columns"
  2 +description: "A theme default with 3 columns"
  3 +number_of_boxes: 3
... ...
public/designs/templates/default/stylesheets/style.css 0 → 100644
... ... @@ -0,0 +1,151 @@
  1 +body {
  2 + font-family: Verdana, Sans-Serif;
  3 + font-size: 14px;
  4 +}
  5 +
  6 +#wrap {
  7 +background: url("../images/bg_content.png") top center repeat-y;
  8 +}
  9 +
  10 +#frame {
  11 +background: url("../images/bg_bgheader.png") top left repeat-x;
  12 +}
  13 +
  14 +#header {
  15 +background: url("../images/bg_header.png") top center no-repeat;
  16 +height: 135px;
  17 +}
  18 +
  19 +#boxes {
  20 + position: relative;
  21 + width: 760px;
  22 + left: 50%;
  23 + margin-left: -380px;
  24 + padding: 0em;
  25 +}
  26 +
  27 +#box_3 {
  28 + width: 200px;
  29 + float: right;
  30 +}
  31 +
  32 +#box_2 {
  33 + float: left;
  34 + width: 200px;
  35 +}
  36 +
  37 +#box_1 {
  38 + margin-left: 205px;
  39 + margin-right: 205px;
  40 +}
  41 +
  42 +#spinner {
  43 + z-index: 1000;
  44 + position: absolute;
  45 + left: 50%;
  46 + margin-left: -16px;
  47 + top: 200px;
  48 +}
  49 +
  50 +#footer_content {
  51 +clear: both;
  52 +}
  53 +
  54 +#footer {
  55 + clear: both;
  56 + text-align: center;
  57 + font-size: smaller;
  58 + color: #333;
  59 + margin: 0px;
  60 + padding: 5px;
  61 + background: #c5d0df url("../images/bg_footer.png") top left repeat-x;
  62 +}
  63 +
  64 +
  65 +/* Edition Mode */
  66 +
  67 +#design_editor .block_list {
  68 + list-style: none;
  69 + margin: 0px;
  70 + padding: 3px;
  71 +}
  72 +
  73 +#design_editor .box {
  74 + border: 2px solid transparent;
  75 +}
  76 +
  77 +#design_editor .hover {
  78 + border: 2px dotted red;
  79 + background: #ff6;
  80 +}
  81 +
  82 +#design_editor_toolbar {
  83 + padding: 5px;
  84 +}
  85 +
  86 +#design_editor_toolbar h3 {
  87 + font-size: 10px;
  88 + background: #dfdfdf;
  89 + margin: 0px;
  90 + padding: 1px;
  91 + text-align: right;
  92 + color: #545454;
  93 +}
  94 +
  95 +#design_editor_toolbar a {
  96 + font-size: 10px;
  97 + padding: 5px;
  98 + background: #dfdfdf;
  99 + color: black;
  100 +}
  101 +
  102 +.design_editor_box_toolbar {
  103 + text-align: center;
  104 + margin: 5px;
  105 + background: #dfdfdf;
  106 +}
  107 +
  108 +.design_editor_box_toolbar a {
  109 + display: inline;
  110 + width: 30px;
  111 + font-size: 10px;
  112 + padding: 2px;
  113 + background: #dfdfdf;
  114 +}
  115 +
  116 +#design_editor_toolbar a:hover, .design_editor_box_toolbar a:hover {
  117 + background: #545454;
  118 + color: #ffffff;
  119 +}
  120 +
  121 +div#notice {
  122 + z-index: 10000;
  123 + position: absolute;
  124 + top: 100px;
  125 + left: 50%;
  126 + margin-left: -200px;
  127 + width: 400px;
  128 + border: 1px solid black;
  129 + background: #efefef;
  130 + padding: 0.5em;
  131 +}
  132 +
  133 +div#notice .button {
  134 + text-align: center;
  135 + margin-top: 1em;
  136 + margin-bottom: 0.25em;
  137 +}
  138 +
  139 +div#notice .button a {
  140 + border: 1px solid gray;
  141 + background: #ddd;
  142 + color: black;
  143 + padding: 4px;
  144 + padding-left: 28px;
  145 + background-image: url(../../../icons/default/cancel.png);
  146 + background-position: top left;
  147 + background-repeat: no-repeat;
  148 +}
  149 +div#notice .button a:hover {
  150 + background-color: #ffd;
  151 +}
... ...