summaryrefslogtreecommitdiffstats
path: root/testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-05-12 06:26:03 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-12 06:26:03 +0000
commit909be5b53a6141f84480dc29eb5dbfffe5c35fad (patch)
treef48c1a1e98dffcbe393a428f06e02fceaf937875 /testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less
parent9437526b739c41c0a1fc25396677d2f134d4ce80 (diff)
parent55d74f86440a5a804d4551e04f7fd39518af0723 (diff)
Merge "add web portal framework for TestAPI"
Diffstat (limited to 'testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less')
-rw-r--r--testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less50
1 files changed, 50 insertions, 0 deletions
diff --git a/testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less b/testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less
new file mode 100644
index 0000000..d641023
--- /dev/null
+++ b/testapi/3rd_party/static/testapi-ui/assets/lib/bootstrap/less/jumbotron.less
@@ -0,0 +1,50 @@
+//
+// Jumbotron
+// --------------------------------------------------
+
+
+.jumbotron {
+ padding: @jumbotron-padding (@jumbotron-padding / 2);
+ margin-bottom: @jumbotron-padding;
+ color: @jumbotron-color;
+ background-color: @jumbotron-bg;
+
+ h1,
+ .h1 {
+ color: @jumbotron-heading-color;
+ }
+
+ p {
+ margin-bottom: (@jumbotron-padding / 2);
+ font-size: @jumbotron-font-size;
+ font-weight: 200;
+ }
+
+ > hr {
+ border-top-color: darken(@jumbotron-bg, 10%);
+ }
+
+ .container &,
+ .container-fluid & {
+ border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
+ }
+
+ .container {
+ max-width: 100%;
+ }
+
+ @media screen and (min-width: @screen-sm-min) {
+ padding: (@jumbotron-padding * 1.6) 0;
+
+ .container &,
+ .container-fluid & {
+ padding-left: (@jumbotron-padding * 2);
+ padding-right: (@jumbotron-padding * 2);
+ }
+
+ h1,
+ .h1 {
+ font-size: (@font-size-base * 4.5);
+ }
+ }
+}