aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/dialog.css34
-rw-r--r--client/style.css15
2 files changed, 49 insertions, 0 deletions
diff --git a/client/dialog.css b/client/dialog.css
new file mode 100644
index 0000000..2217aba
--- /dev/null
+++ b/client/dialog.css
@@ -0,0 +1,34 @@
+body {
+ font-family: sans-serif;
+ margin: 6em auto;
+ padding: 2em;
+}
+
+h1 {
+ color: #333;
+ font-size: 2em;
+}
+
+p {
+ color: #666;
+}
+
+.login-btn {
+ display: block;
+ max-width: 100%;
+ padding: 15px;
+ margin: 10px 0;
+ background-color:#30bed9;
+ background-image: linear-gradient(to bottom,#00caf2,#0ac);
+ border-color:#008eab;
+ color: white;
+ text-decoration: none;
+ text-align: center;
+ border-radius: 4px;
+}
+
+.login-btn:hover, .login-btn:focus, .login-btn:active {
+ background-image: none;
+ background-color: #018cab;
+ border-color: #008aaa;
+}
diff --git a/client/style.css b/client/style.css
new file mode 100644
index 0000000..a2772f6
--- /dev/null
+++ b/client/style.css
@@ -0,0 +1,15 @@
+#security svg {
+ color: gold;
+ height: 16px;
+ position: relative;
+ top: 2px;
+ width: 16px;
+}
+
+#security .claim svg {
+ color: floralWhite;
+}
+
+.notOwner svg {
+ transform: rotate(20deg)
+}