diff options
| author | 8cy <[email protected]> | 2020-06-11 06:59:25 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-06-11 06:59:25 -0700 |
| commit | 19cb49239ef13377242cd7f9d5c4a0f8b5f8280d (patch) | |
| tree | 2d81359271e213a307354780353ebd00e4aa6f51 /public/main.css | |
| parent | big update, read desc (diff) | |
| download | twittlet-19cb49239ef13377242cd7f9d5c4a0f8b5f8280d.tar.xz twittlet-19cb49239ef13377242cd7f9d5c4a0f8b5f8280d.zip | |
add signature fade + twitter-chan
- added the fade-in effect which i use on all of my projects cx
- added twitter-chan in the top left corner of the screen, click for an easter egg ..
- added meta description
Diffstat (limited to 'public/main.css')
| -rw-r--r-- | public/main.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/public/main.css b/public/main.css new file mode 100644 index 0000000..cdc056f --- /dev/null +++ b/public/main.css @@ -0,0 +1,13 @@ +.hideme { + opacity: 0; +} + +/* https://stackoverflow.com/questions/14396614/rotate-image-with-onclick */ +.rotated { + transform: rotate(90deg); + -ms-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -webkit-transform: rotate(90deg); + -o-transform: rotate(90deg); +} +.rotateme { transition: all 0.5s ease; }
\ No newline at end of file |