diff options
| author | Fuwn <[email protected]> | 2020-11-06 18:24:26 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-11-06 18:24:26 -0800 |
| commit | 9cdce4254700691301608c6f1d3081950023cc4f (patch) | |
| tree | 9d24529acc19b354f80cb2d610aa1e7686f4d530 /public/css/demos/shared.css | |
| download | blog-9cdce4254700691301608c6f1d3081950023cc4f.tar.xz blog-9cdce4254700691301608c6f1d3081950023cc4f.zip | |
repo: initial :star:
Diffstat (limited to 'public/css/demos/shared.css')
| -rw-r--r-- | public/css/demos/shared.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/public/css/demos/shared.css b/public/css/demos/shared.css new file mode 100644 index 0000000..7794d32 --- /dev/null +++ b/public/css/demos/shared.css @@ -0,0 +1,28 @@ +.mouse-pointer { + -webkit-transform: rotateZ(-20deg); + -moz-transform: rotateZ(-20deg); + -ms-transform: rotateZ(-20deg); + -o-transform: rotateZ(-20deg); + transform: rotateZ(-20deg); + position: relative; + width: 0; + top: 27px; + right: 45px; +} + +.mouse-pointer .head { + border-left: 7px solid transparent; + border-right: 6px solid transparent; + border-bottom: 16px solid white; + width: 0; + height: 0; +} + +.mouse-pointer .tail { + width: 3px; + height: 8px; + position: relative; + left: 5px; + top: -1px; + background-color: #ffffff; +} |