From 91da735599e1e941fc866a7b9818c4ff16536086 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sat, 18 Apr 2020 19:20:04 -0500 Subject: Create quiz bunny --- src/quiz-bunny/static/styles.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/quiz-bunny/static/styles.css (limited to 'src/quiz-bunny/static/styles.css') diff --git a/src/quiz-bunny/static/styles.css b/src/quiz-bunny/static/styles.css new file mode 100644 index 0000000..9734c87 --- /dev/null +++ b/src/quiz-bunny/static/styles.css @@ -0,0 +1,38 @@ +.center{ + margin: auto; + width: 350px; + padding: 10px; +} +input { + margin-top: 20px; +} +input[type=text]{ + border: none; + border-bottom: 1px solid #ccc; + padding: 5px; +} +input[type=button]{ + border: none; + padding: 8px 8px; + cursor: pointer; + background-color: coral; + color: white; +} +input[type=button]:disabled { + color: #eeeeee; + background-color: #dddddd; +} +input[type=button]:disabled:hover { + box-shadow: none; + cursor: default +} +input[type=button]:hover{ + box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) +} +span { + margin-right: 1em; +} +.leave { + position: absolute; + bottom: 5px; +} \ No newline at end of file -- cgit v1.2.3