From 1a6a47c8445c80b148c3288102d08fd692b67eea Mon Sep 17 00:00:00 2001 From: Hao Sun Date: Mon, 6 Sep 2021 17:19:24 +0800 Subject: [PATCH] * typo. --- module/tutorial/css/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/tutorial/css/index.css b/module/tutorial/css/index.css index 8b85af8af0..fd77de5e6d 100644 --- a/module/tutorial/css/index.css +++ b/module/tutorial/css/index.css @@ -63,7 +63,7 @@ #taskModalBack {position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: #fff; transition: opacity .4s; opacity: 0; display: none;} #taskModalBack.in {filter: alpha(opacity=60); opacity: 0.6;} -#taskModal {width: 500px; position: absolute; background: #43a047; color: #fff; text-align: center; overflow: hidden; transform: scale(.5) translate(0, 200px) rotateX(120deg); transitizon: transform .4s, opacity .4s; opacity: 0; transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); top: 0; padding: 30px; left: 50%; margin-left: -250px; top: 20%; box-shadow: 0 0 20px 0 rgba(0,0,0,.25); display: none;} +#taskModal {width: 500px; position: absolute; background: #43a047; color: #fff; text-align: center; overflow: hidden; transform: scale(.5) translate(0, 200px) rotateX(120deg); transition: transform .4s, opacity .4s; opacity: 0; transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); top: 0; padding: 30px; left: 50%; margin-left: -250px; top: 20%; box-shadow: 0 0 20px 0 rgba(0,0,0,.25); display: none;} #taskModal.in {transform: scale(1) translate(0) rotateX(0); opacity: 1;} #taskModal h3 {margin-bottom: 20px;} #taskModal .start-icon > .icon-spin {-moz-animation: spin 10s infinite linear; -o-animation: spin 10s infinite linear; -webkit-animation: spin 10s infinite linear; animation: spin 10s infinite linear;}