diff options
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -136,6 +136,40 @@ marquee{ border-top: 3px dotted rgba(0, 0, 255, 0.6); } +.gif { + position: fixed; + opacity: 0.9; +} + +.gif:hover { + animation-name: spin; + animation-duration: 1s; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +.side-scroller { + overflow-x: auto; + white-space: nowrap; +} + +.side-scroller .content { + display: inline-block; + border-color: #9DDFFF; + width: 310px; + margin: 10px; + color: white; + background-image: url(img/bg.gif); +} + +.side-scroller .content h2 { + width: 100%; +} + +.side-scroller .content img { + width: 95%; +} + .footer{ /*position: fixed; top: 5px;*/ |
