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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-07 08:40:23 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-07 08:40:23 +0300
commit887cf5c7101c058d30b10d767c186d548e6c5e92 (patch)
tree6b5755b87506421de9b50e45e09562bfff50991e /app/assets/stylesheets/pages/help.scss
parentceb8f9dfeb77c99dfac121fb349ee3c8a9969ae9 (diff)
Better name for pages css dir
Diffstat (limited to 'app/assets/stylesheets/pages/help.scss')
-rw-r--r--app/assets/stylesheets/pages/help.scss72
1 files changed, 72 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/help.scss b/app/assets/stylesheets/pages/help.scss
new file mode 100644
index 00000000000..07c62f98c36
--- /dev/null
+++ b/app/assets/stylesheets/pages/help.scss
@@ -0,0 +1,72 @@
+.documentation-index {
+ h1 {
+ margin: 0;
+ }
+
+ h2 {
+ font-size: 20px;
+ }
+
+ li {
+ line-height: 24px;
+ color: #888;
+
+ a {
+ font-size: 14px;
+ margin-right: 3px;
+ }
+ }
+}
+
+
+.shortcut-mappings {
+ font-size: 12px;
+ color: #555;
+
+ tbody:first-child tr:first-child {
+ padding-top: 0
+ }
+
+ th {
+ padding-top: 15px;
+ font-size: 14px;
+ line-height: 1.5;
+ color: #333;
+ text-align: left
+ }
+
+ td {
+ padding-top: 3px;
+ padding-bottom: 3px;
+ vertical-align: top;
+ line-height: 20px
+ }
+
+ .shortcut {
+ padding-right: 10px;
+ color: #999;
+ text-align: right;
+ white-space: nowrap
+ }
+
+ .key {
+ @extend .label;
+ @extend .label-inverse;
+ font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
+ padding: 3px 5px;
+ }
+}
+
+.modal-body {
+ position: relative;
+ overflow-y: auto;
+ padding: 15px;
+}
+
+body.modal-open {
+ overflow: hidden;
+}
+
+.modal .modal-dialog {
+ width: 860px;
+}