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:
Diffstat (limited to 'app/assets/stylesheets/style.scss')
-rw-r--r--app/assets/stylesheets/style.scss39
1 files changed, 39 insertions, 0 deletions
diff --git a/app/assets/stylesheets/style.scss b/app/assets/stylesheets/style.scss
index c9262c4680c..4bb5fef9269 100644
--- a/app/assets/stylesheets/style.scss
+++ b/app/assets/stylesheets/style.scss
@@ -761,3 +761,42 @@ body, button, input, select, textarea {
padding:10px;
}
}
+
+.help_content {
+ margin:20px;
+ margin-top:71px;
+
+ h2 {
+ margin:0;
+ padding:0;
+ }
+
+ .menu {
+ float:left;
+ width:20%;
+
+ .active {
+ color: $active_bd_color;
+ }
+ }
+
+ .content {
+ float:right;
+ width:78%;
+ }
+
+ .bash {
+ @include round-borders-all(4px);
+ background:#eee;
+ padding:5px;
+ //overflow-x:scroll;
+ pre{
+ padding:0;
+ line-height:2.0;
+ margin:0;
+ font-family: 'Courier New', 'andale mono','lucida console',monospace;
+ color: #333;
+ text-align:left;
+ }
+ }
+}