Skip to content

Commit

Permalink
Modified class name
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Aug 3, 2017
1 parent dc5bb2a commit 7a53178
Show file tree
Hide file tree
Showing 15 changed files with 258 additions and 138 deletions.
5 changes: 5 additions & 0 deletions dist/snack-themes.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
.theme-dark {
background-color: #212121;
color: #5c5c5c;
}

.theme-dark body {
Expand Down Expand Up @@ -86,6 +87,10 @@
border-color: #2d2d2d;
}

.theme-dark .boxes.inverted {
border-color: #fff;
}

.theme-dark .boxes.secondary > .box.heading {
background-color: transparent;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/snack-themes.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 13 additions & 10 deletions dist/snack.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}

small,
Expand Down Expand Up @@ -96,7 +95,7 @@ hr {
background-color: #f59c1a;
}

.bg-dark {
.bg-inverted {
background-color: #2d353c;
}

Expand Down Expand Up @@ -248,20 +247,20 @@ hr {
background-color: #eb900a;
}

.btn.dark {
.btn.inverted {
color: #fff;
background-color: #2d353c;
}

.btn.dark:hover {
.btn.inverted:hover {
background-color: #434f59;
}

.btn.dark:focus {
.btn.inverted:focus {
background-color: #434f59;
}

.btn.dark:active {
.btn.inverted:active {
background-color: #434f59;
}

Expand Down Expand Up @@ -413,22 +412,22 @@ hr {
background-color: #f59c1a;
}

.btn.outline.dark {
.btn.outline.inverted {
color: #2d353c;
border-color: #2d353c;
}

.btn.outline.dark:hover {
.btn.outline.inverted:hover {
color: #fff;
background-color: #2d353c;
}

.btn.outline.dark:focus {
.btn.outline.inverted:focus {
color: #fff;
background-color: #2d353c;
}

.btn.outline.dark:active {
.btn.outline.inverted:active {
color: #fff;
background-color: #2d353c;
}
Expand Down Expand Up @@ -954,6 +953,10 @@ table {
border-color: #f59c1a;
}

.boxes.inverted {
border-color: #2d353c;
}

.boxes.transparent {
background-color: transparent;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/snack.min.css

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion examples/css/doc.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ body {
height: 100%;
}

* {
transition: background-color .5s;
}

.header {
width: 100%;
height: 50%;
text-align: center;
background-color: #f5f5f5;
color: #333;
}

.header:before {
Expand Down Expand Up @@ -77,7 +82,7 @@ body {
}

.theme-dark .header {
background-color: #383838;
background-color: #262626;
color: #fff;
}

Expand Down
5 changes: 5 additions & 0 deletions examples/css/snack-themes.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
.theme-dark {
background-color: #212121;
color: #5c5c5c;
}

.theme-dark body {
Expand Down Expand Up @@ -86,6 +87,10 @@
border-color: #2d2d2d;
}

.theme-dark .boxes.inverted {
border-color: #fff;
}

.theme-dark .boxes.secondary > .box.heading {
background-color: transparent;
}
Expand Down
23 changes: 13 additions & 10 deletions examples/css/snack.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}

small,
Expand Down Expand Up @@ -96,7 +95,7 @@ hr {
background-color: #f59c1a;
}

.bg-dark {
.bg-inverted {
background-color: #2d353c;
}

Expand Down Expand Up @@ -248,20 +247,20 @@ hr {
background-color: #eb900a;
}

.btn.dark {
.btn.inverted {
color: #fff;
background-color: #2d353c;
}

.btn.dark:hover {
.btn.inverted:hover {
background-color: #434f59;
}

.btn.dark:focus {
.btn.inverted:focus {
background-color: #434f59;
}

.btn.dark:active {
.btn.inverted:active {
background-color: #434f59;
}

Expand Down Expand Up @@ -413,22 +412,22 @@ hr {
background-color: #f59c1a;
}

.btn.outline.dark {
.btn.outline.inverted {
color: #2d353c;
border-color: #2d353c;
}

.btn.outline.dark:hover {
.btn.outline.inverted:hover {
color: #fff;
background-color: #2d353c;
}

.btn.outline.dark:focus {
.btn.outline.inverted:focus {
color: #fff;
background-color: #2d353c;
}

.btn.outline.dark:active {
.btn.outline.inverted:active {
color: #fff;
background-color: #2d353c;
}
Expand Down Expand Up @@ -954,6 +953,10 @@ table {
border-color: #f59c1a;
}

.boxes.inverted {
border-color: #2d353c;
}

.boxes.transparent {
background-color: transparent;
}
Expand Down
Loading

0 comments on commit 7a53178

Please sign in to comment.