aboutsummaryrefslogtreecommitdiff
path: root/src/quiz-bunny/static/styles.css
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-04-18 19:20:04 -0500
committerMark Powers <markppowers0@gmail.com>2020-04-18 19:20:04 -0500
commit91da735599e1e941fc866a7b9818c4ff16536086 (patch)
tree76ce820b58a63c12993bf71981167e3830392bb4 /src/quiz-bunny/static/styles.css
parentecd8d064a370ce0b9d4a353f6151638b60838208 (diff)
Create quiz bunny
Diffstat (limited to 'src/quiz-bunny/static/styles.css')
-rw-r--r--src/quiz-bunny/static/styles.css38
1 files changed, 38 insertions, 0 deletions
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