Socialify

Folder ..

Viewing _design-system-reset.scss
181 lines (157 loc) • 3.3 KB

  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
/* for HTML 5 */
article, aside, datagrid, datalist, details, dialog, figure, footer, header, main, menu, nav, section { display: block; }
audio, canvas, progress, video { display: inline-block; }
abbr, eventsource, mark, meter, time, output, bb { display: inline; }

/* to comment/fallback if you care about IE<8 */
html { box-sizing: border-box; }
*, *:before, *:after {
  box-sizing: inherit;
}

/* reset minimum */
html, body, blockquote, ul, ol, form, button, figure { margin: 0; padding: 0; }
button, progress { border: 0; }
p, ul, ol, dl, blockquote, pre, menu, td, th {
  font-size: 1em;
  line-height: $l-h;
  margin: $l-h * 1em 0;
}

@if $use-reset-button == true {
  /* reset buttons, remember to style them in forms */
  input, select, textarea, optgroup, button {
    background: transparent;
    border: 0;
    font: inherit;
    -webkit-appearance: none;
  }
  // -webkit-appearance: none makes vocalization failing
  input[type="checkbox"] {
	-webkit-appearance: checkbox;
  }
  input[type="radio"] {
	-webkit-appearance: radio;
  }

}
@else {
	input, select, textarea, optgroup, button {
		font: inherit;
	}
}

/* fix display img/iframe */
img,
iframe { vertical-align: middle; }

ul, ol, menu { padding-left: 2em; }

dd { margin-left: 2em; }


@if $rtl-option == true {
  /* RTL */
  [dir="rtl"] {
	ul,
    ol {
    	padding-left: 0;
    	padding-right: 2em;
	  }
	dd {
		margin-left: 0;
		margin-right: 2em;
	}
  }
}


@if $root-equiv-10-px == true {
  /* base font size at 10px */
  html {
	font-size: 62.5%;
	@if ( $use-ie-calc-font-fallback == true ){
		font-size: calc(1em * 0.625);
	}
  }
}

@if $apply-body-styles == true {
	body {
	background: $pm-global-grey;
	color: $pm-global-light;
	font-family: $font-family;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;

	@if $typo-unit == 'use_em' {
		@if $root-equiv-10-px == true {
		font-size: em($base-font, 10);
		}
		@else {
			font-size: em($base-font, $root-default-font-size);
			}
	}
	@else if $typo-unit == 'use_rem' {
		font-size: var(--body-fontsize, rem($base-font));
	}
	@else if $typo-unit == 'use_rem_with_em_fallback' {
		@if $root-equiv-10-px == true {
		font-size: em($base-font, 10);
		}
		@else {
			font-size: em($base-font, $root-default-font-size);
			}
		font-size: rem($base-font);
	}
	line-height: $l-h;
	min-height: 100%;
	}
}


// Sass placeholder, don't touch if you are not sure ;)
%bold {
    font-weight: bold;
}
b, strong {
	@extend %bold;
}

/* harmonization between Chrome/Firefox */
pre, code, kbd, samp {
	font-family: $font-family-monospace;
	font-size: 1em;
}
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

// tiny reset for mark tag
mark {
	@if ( $use-color-reset-mark == true ) {
		background-color: unset;
	}
	@else {
		background-color: var(--bgcolor-mark, $default-bgColor-mark);
	}
	color: var(--color-mark, currentColor);
	font-weight: bold;
}

small {
	font-size: 80%;
}


/* avoid border on images in links + fix border image IE */
a:link img,
a:visited img,
img {
	border-style: none;
}

/* tiny control */
audio:not([controls]) {
    display: none;
    height: 0;
}

/* important, abbr are good */
/* only those with a title are shown */
abbr[title] {
  border-bottom: dotted 1px;
  cursor: help;
  text-decoration: none;
  /* color inherited from text */
}


code,
pre,
samp {
  white-space: pre-wrap;
}
code {
  line-height: 1;
}
dfn {
    font-style: italic;
}