Skip to content

Commit a3ea628

Browse files
authored
Merge pull request #131 from scriptex/feature/responsive-grid
Add a responsive grid
2 parents 2790bc8 + 0fbf8ba commit a3ea628

33 files changed

Lines changed: 1101 additions & 600 deletions

README.md

Lines changed: 351 additions & 199 deletions
Large diffs are not rendered by default.

assets/components/_btn.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Buttons
2-
31
.c-btn {
42
text-align: center;
53
text-decoration: none;

assets/components/_lists.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Lists
2-
31
[class^='c-list-'] {
42
padding: 0;
53
margin: 0;

assets/elements/_document.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
// Document
2-
31
html {
42
-webkit-tap-highlight-color: rgba($color-black, 0);
5-
tap-highlight-color: rgba($color-black, 0);
63
}
74

85
body {

assets/elements/_headings.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Headings
2-
31
h1 {
42
font-size: $font-size-h1;
53
}

assets/elements/_links.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Links
2-
31
a {
42
color: $color-action;
53
text-decoration: underline;

assets/elements/_texts.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Texts
2-
31
p,
42
ul,
53
ol,

assets/generic/_form-elements.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Form Elements
2-
31
fieldset {
42
padding: 0;
53
}
@@ -65,7 +63,6 @@ textarea {
6563
color: inherit;
6664
-moz-osx-font-smoothing: grayscale;
6765
-webkit-font-smoothing: antialiased;
68-
font-smoothing: antialiased;
6966
text-rendering: optimizeLegibility;
7067
}
7168

assets/generic/_reset.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Reset
2-
31
*,
42
*::before,
53
*::after {
@@ -15,7 +13,6 @@ body {
1513
text-decoration-skip-ink: auto;
1614
-moz-osx-font-smoothing: grayscale;
1715
-webkit-font-smoothing: antialiased;
18-
font-smoothing: antialiased;
1916
text-size-adjust: none;
2017
text-rendering: optimizeLegibility;
2118
}

assets/generic/_transitions.scss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
// Transitions
2-
31
a,
42
a img,
3+
a svg,
54
input,
65
button,
76
select,
87
textarea,
98
.c-btn,
109
[class^='svg-'] {
11-
transition-property: color, opacity, border-color, background-color,
12-
box-shadow, fill, stroke;
10+
transition-property: color, opacity, border-color, background-color, box-shadow, fill, stroke;
1311
transition-duration: $timing;
1412
transition-timing-function: $easing;
1513
}

0 commit comments

Comments
 (0)