Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-08 19:55:53 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-09 00:01:49 +0400
commita7968604d8544f5fb55a7bdb98ca52bb7ee76bbf (patch)
tree16d9099ce8f9f4975e9be76d85a64760e66ae945 /core/css/styles.css
parent9b99c81a9d36b83c90c36437668701e4794e0661 (diff)
fix styling and wording of no-JavaScript message
Diffstat (limited to 'core/css/styles.css')
-rw-r--r--core/css/styles.css26
1 files changed, 13 insertions, 13 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 66b1885c6e5..8dc9bb4780e 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -42,28 +42,28 @@ body {
position: absolute;
top: 0;
bottom: 0;
- z-index: 999;
+ z-index: 9000;
width: 100%;
text-align: center;
- background-color: rgba(50,0,0,0.5);
- color: white;
- text-shadow: 0px 0px 5px black;
+ background-color: rgba(0,0,0,0.5);
+ color: #fff;
line-height: 125%;
- font-size: x-large;
+ font-size: 24px;
}
#nojavascript div {
+ display: block;
+ position: relative;
width: 50%;
- top: 40%;
- position: absolute;
- left: 50%;
- margin-left: -25%;
+ top: 30%;
+ margin: 0px auto;
}
#nojavascript a {
- color: #ccc;
- text-decoration: underline;
+ color: #fff;
+ border-bottom: 2px dotted #fff;
}
-#nojavascript a:hover {
- color: #aaa;
+#nojavascript a:hover,
+#nojavascript a:focus {
+ color: #ddd;
}