cirandas.net

ref: master

plugins/exchange/public/stylesheets/_base.scss


  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
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/* use with @extend, CSS clear bugfix */
.clean {
  clear: both;
}
.container-clean {
  overflow: hidden;
  display: inline-block; /* Necessary to trigger "hasLayout" in IE */
  display: block; /* Sets element back to block */
}

/* layout base parameters */
$modules: 10;
$base: 12px;
$wireframe: 960px;

/* heights should only use multiples of this */
$height: $base;

/* base measurements */
$intercolumn: 2*$base;
$module: $wireframe/$modules - $intercolumn;

/* widths should only use one of these */
$module01: 01*$module + 00*$intercolumn;
$module02: 02*$module + 01*$intercolumn;
$module03: 03*$module + 02*$intercolumn;
$module04: 04*$module + 03*$intercolumn;
$module05: 05*$module + 04*$intercolumn;
$module06: 06*$module + 05*$intercolumn;
$module07: 07*$module + 06*$intercolumn;
$module08: 08*$module + 07*$intercolumn;
$module09: 09*$module + 08*$intercolumn;
$module09: 09*$module + 08*$intercolumn;
$module10: 10*$module + 09*$intercolumn;
$module11: 11*$module + 10*$intercolumn;
$module12: 12*$module + 11*$intercolumn;
$module01p: percentage($module01/$wireframe);
$module02p: percentage($module02/$wireframe);
$module03p: percentage($module03/$wireframe);
$module04p: percentage($module04/$wireframe);
$module05p: percentage($module05/$wireframe);
$module06p: percentage($module06/$wireframe);
$module07p: percentage($module07/$wireframe);
$module08p: percentage($module08/$wireframe);
$module09p: percentage($module09/$wireframe);
$module10p: percentage($module10/$wireframe);
$module11p: percentage($module11/$wireframe);
$module12p: percentage($module12/$wireframe);

/* paddings and margins should only use one of these
   REMEMBER to disccount the borders size from padding, as borders uses padding's space.
 */
$margin: $intercolumn;
$half-margin: $margin/2;
$padding: $intercolumn/2;
$half-padding: $padding/2;
$marginp: percentage($margin/$wireframe);
$half-marginp: percentage($half-margin/$wireframe);
$paddingp: percentage($padding/$wireframe);
$half-paddingp: percentage($half-padding/$wireframe);

$wireframe-padding: 5*$padding;

/* use for borders */
$border: 1px;
$border-radius: 5px;

/* use for text shadows */
$shadow: 2px;

/* Colors */

$color-action-button: #394E41;

/* Fonts */

/* Paragraphs Styles (use with @extend) */

.pstyle-none {
  font-size: 12px;
}
.pstyle-basic {
  font-size: 16px;
}
.pstyle-button {
  font-size: 16px;
}
.pstyle-button-small {
  font-size: 13px;
}
.pstyle-title {
  font-size: 72px;
}
.pstyle-h1 {
  font-size: 34px;
}
.pstyle-h2 {
  font-size: 26px;
}
.pstyle-h3 {
  font-size: 21px;
}
.pstyle-h4 {
  font-size: 16px;
}
.pstyle-h5 {
  font-size: 13px;
}
.pstyle-title-section {
  font-size: 92px;
}
.pstyle-field {
  font-size: 13px;
}
.pstyle-menu-big-selected {
  font-size: 21px;
}
.pstyle-menu-big-unselected {
  font-size: 21px;
}
.pstyle-menu-medium-selected {
  font-size: 16px;
}
.pstyle-menu-medium-unselected {
  font-size: 16px;
}
.pstyle-menu-small-selected {
  font-size: 13px;
}
.pstyle-menu-small-unselected {
  font-size: 13px;
}
.pstyle-tp4 {
  font-size: 42px;
}
.pstyle-tp3 {
  font-size: 34px;
}
.pstyle-tp2 {
  font-size: 26px;
}
.pstyle-tp1 {
  font-size: 21px;
}
.pstyle-tm1 {
  font-size: 13px;
}
.pstyle-tm2 {
  font-size: 10px;
}

/* Images */

$profile-thumb-size: 4*$base;
$profile-portrait-size: 10*$base;

/* profile-image that can be centered and resized with aspect ratio */
.profile-image {
  display: inline-block;

  &.thumb {
    width: $profile-thumb-size;
    height: $profile-thumb-size;
  }
  &.portrait {
    width: $profile-portrait-size;
    height: $profile-portrait-size;
  }

  /* do not put padding in this as background size will consider it. */
  .inner {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-size: contain; /* css3 enabled */
  }
}

/* Buttons */

.action-button {
  display: inline-block;
  padding: $half-padding $padding;
  margin: 0; /* remove submit input browser's margin */
  height: auto;
  width: auto;
  color: white;
  &:visited, &:active, &:hover { color: white; }
  background: $color-action-button;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  border: none;
  border-radius: $border-radius;
}