aboutsummaryrefslogtreecommitdiff
path: root/src/quiz-bunny/static/styles.css
diff options
context:
space:
mode:
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