This commit is contained in:
Codrin Pavel
2019-11-12 13:34:23 +02:00
parent ae00c23db5
commit 0bb5a41c17
99 changed files with 10723 additions and 2 deletions

View File

@@ -0,0 +1,43 @@
html {
color: $black;
margin: 0 0 40px;
font: 400 13px/1.4 'Open Sans', arial, sans-serif;
}
* {
box-sizing: border-box;
outline: none;
}
button,
.button {
&:hover {
opacity: .8;
}
}
label,
button,
input {
cursor: pointer;
}
strong, b {
font-weight: 600;
}
h1 {
text-align: center;
font-size: 32px;
font-weight: 600;
margin-top: 40px;
}
h4,
h3 {
display: block;
width: 100%;
margin: 40px 0 10px;
font-size: 16px;
font-weight: 600;
}

View File

@@ -0,0 +1,88 @@
* {
box-sizing: border-box;
}
main {
display: block;
}
html, body, div, span, applet, object, iframe, p, blockquote,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, pre {
margin: 0;
padding: 0;
border: 0;
background: 0;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}
a {
color: inherit;
text-decoration: none;
background-color: transparent;
}
svg {
fill: currentColor;
}
ol, ul {
list-style: none;
}
img {
border-style: none;
max-width: 100%;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
[hidden] {
display: none;
}