diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-12-01 15:57:06 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-12-01 15:57:06 +0100 |
commit | 9546418c5ed9b1876132b43dff1ae690c3ec4e24 (patch) | |
tree | e291fe6c2443aeaaef99edf5fbc5cd1af336f43e /playgrounds/colors/style.css | |
parent | dbe9c376fd76dd4e4777281888f4092e38512c18 (diff) | |
parent | 947964e4a257b1b1fcc9b115a218a9d8dde7513f (diff) | |
download | svg.js-9546418c5ed9b1876132b43dff1ae690c3ec4e24.tar.gz svg.js-9546418c5ed9b1876132b43dff1ae690c3ec4e24.zip |
Merge branch '790-color-spaces' into 3.0.0
Diffstat (limited to 'playgrounds/colors/style.css')
-rw-r--r-- | playgrounds/colors/style.css | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/playgrounds/colors/style.css b/playgrounds/colors/style.css new file mode 100644 index 0000000..f327905 --- /dev/null +++ b/playgrounds/colors/style.css @@ -0,0 +1,70 @@ + +* { + box-sizing: border-box; +} + +html { + background-color : #fefefe; +} + +body { + margin: 0; + width: 100vw; + height: 99vh; + grid-gap: 30px; + display: inline-grid; + align-items: center; + grid-template-columns: 10vw 40vw auto 10vw; + grid-template-rows: 0 10vw auto 0; +} + +h1 { + text-align: right; + border-right: solid 3px #f06; + padding-right: 12px; + color: #f06; + font-size: 52px; + font-family: Helvetica; + grid-row: 2; + grid-column: 2; + line-height: 1.8em; +} + +p { + padding-right: 50px; + color: #444; + font-size: 18px; + font-family: Helvetica; + grid-row: 2; + grid-column: 3; +} + +svg { + height: 100%; + width: 100%; + grid-row: 3; + grid-column: 2/4; + background-color: #f5f6f7; + border-radius: 20px; + border: #f065 1px solid; +} + +.pink { + fill: #FF0066; +} + +.green { + fill: #00ff99; +} + +.dark-pink { + fill: #660029; +} + +.light-pink { + fill: #FF99C2; +} + +.off-white { + fill: #FFCCE0; +} |