diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-08 21:30:37 -0400 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-08 21:30:37 -0400 | 
| commit | 9069bcb3fe683d8422061c9f9218213a0b252dd2 (patch) | |
| tree | 82db0c327662152872a86bd337e56604f78f7a9c | |
| parent | a0d8caffb4f83e0e7219318fa08839ee93e653b8 (diff) | |
Remove duplicate file
| -rw-r--r-- | test/test-stylesheet.css | 32 | 
1 files changed, 0 insertions, 32 deletions
| diff --git a/test/test-stylesheet.css b/test/test-stylesheet.css deleted file mode 100644 index ab25732e..00000000 --- a/test/test-stylesheet.css +++ /dev/null @@ -1,32 +0,0 @@ -body { -    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -    font-size: 14px; -    max-width: 680px; -    padding: 0 1em; -    box-sizing: border-box; -    margin: 0 auto; -    background-color: #f8f8f8; -    counter-reset: test-id; -} - -h1 { -    font-size: 2em; -    margin: 0.67em 0; -} - -.test { -    background-color: #ffffff; -    margin: 1em 0; -    padding: 0.5em; -    box-shadow: rgba(64, 64, 64, 0.3) 0px 1px 2px 0px, rgba(64, 64, 64, 0.15) 0px 1px 3px 1px; -    border-radius: 4px; -} - -.test:before { -    content: "Test " counter(test-id); -    display: block; -    counter-increment: test-id; -    margin-bottom: 0.5em; -    border-bottom: 1px solid #d8d8d8; -    font-weight: bold; -} |