diff options
| author | s1n <[email protected]> | 2019-08-06 19:23:36 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-08-06 19:23:36 -0700 |
| commit | 4f390d9578fae2171fa0e8120369a0f1bf137b41 (patch) | |
| tree | 5274b62078faab6d9c5d74aa7d3e7619f874240b | |
| parent | Initial commit (diff) | |
| download | pure-css-gradient-4f390d9578fae2171fa0e8120369a0f1bf137b41.tar.xz pure-css-gradient-4f390d9578fae2171fa0e8120369a0f1bf137b41.zip | |
Create main.css
| -rw-r--r-- | css/main.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..894ddd2 --- /dev/null +++ b/css/main.css @@ -0,0 +1,5 @@ +body { + background-image: linear-gradient(to bottom right, #ff9eaa 0% 65%, #e860ff 95% 100%); + background-position: center; /* You can remove this, but atm it changes the colour to a blue-ish gradient. */ + background-attachment: fixed; +} |