diff options
Diffstat (limited to 'css/tutorial.css')
-rw-r--r-- | css/tutorial.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/css/tutorial.css b/css/tutorial.css index 971bfce..41a2ae4 100644 --- a/css/tutorial.css +++ b/css/tutorial.css @@ -17,6 +17,10 @@ a.next { float: right; margin: 0 10px; cursor: pointer; + transition:background .3s; + -webkit-transition:background .3s; + -o-transition:color .3s; + -moz-transition:color .3s; } a.next:hover { background-color: #446; @@ -33,3 +37,11 @@ a.next.disabled, a.next.disabled:hover { .hidden { display: none; } + +.flash { + background-color: #a95 !important; + transition:background .3s !important; + -webkit-transition:background .3s !important; + -o-transition:color .3s !important; + -moz-transition:color .3s !important; +} |