Skip to content

Commit

Permalink
Update sass, fix division warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jackocnr committed Apr 14, 2023
1 parent 215511f commit 5f4ad37
Show file tree
Hide file tree
Showing 6 changed files with 7,575 additions and 9,106 deletions.
40 changes: 25 additions & 15 deletions build/css/demo.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
* {
box-sizing: border-box; }
box-sizing: border-box;
}

body {
margin: 20px;
font-size: 14px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #555; }
color: #555;
}

pre {
margin: 0 !important;
display: inline-block; }
display: inline-block;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
background: none; }
background: none;
}

input,
button {
Expand All @@ -27,25 +31,31 @@ button {
border-radius: 2px;
font-family: inherit;
font-size: 100%;
color: inherit; }
input[disabled],
button[disabled] {
background-color: #eee; }
color: inherit;
}
input[disabled],
button[disabled] {
background-color: #eee;
}

input,
select {
border: 1px solid #ccc;
width: 250px; }
width: 250px;
}

::placeholder,
:-ms-input-placeholder {
color: #bbb; }
color: #bbb;
}

button {
color: #fff;
background-color: #428bca;
border: 1px solid #357ebd; }
button:hover {
background-color: #3276b1;
border-color: #285e8e;
cursor: pointer; }
border: 1px solid #357ebd;
}
button:hover {
background-color: #3276b1;
border-color: #285e8e;
cursor: pointer;
}
Loading

0 comments on commit 5f4ad37

Please sign in to comment.