From 5876f891071d065e5ec47ed9863f66f486eb8cd6 Mon Sep 17 00:00:00 2001 From: seorin000516 <65610174+seorin000516@users.noreply.github.com> Date: Wed, 3 Jun 2020 02:48:48 +0900 Subject: [PATCH] Create event.css --- event.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 event.css diff --git a/event.css b/event.css new file mode 100644 index 0000000..f978b9e --- /dev/null +++ b/event.css @@ -0,0 +1,19 @@ +body{background-color: #C1ACA0;} + +section{background-color: white; border-radius: 10px; padding: 10px;} + +#table{margin: 30px;} + +#title{font-size: 20px;} + +#box{background-color: #C1ACA0; color: white; border-radius: 2px; + font-size: 20px;} + +@keyframes textColorAnimation { + 0% { color : blue; } + 50% { color :yellow; } + 100% { color : red; } + } +#color { animation-name : textColorAnimation; + animation-duration : 3s; + animation-iteration-count : infinite;}