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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/4.1/examples/album/album.css')
-rw-r--r--docs/4.1/examples/album/album.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/4.1/examples/album/album.css b/docs/4.1/examples/album/album.css
new file mode 100644
index 0000000000..7eabbf9b2f
--- /dev/null
+++ b/docs/4.1/examples/album/album.css
@@ -0,0 +1,39 @@
+:root {
+ --jumbotron-padding-y: 3rem;
+}
+
+.jumbotron {
+ padding-top: var(--jumbotron-padding-y);
+ padding-bottom: var(--jumbotron-padding-y);
+ margin-bottom: 0;
+ background-color: #fff;
+}
+@media (min-width: 768px) {
+ .jumbotron {
+ padding-top: calc(var(--jumbotron-padding-y) * 2);
+ padding-bottom: calc(var(--jumbotron-padding-y) * 2);
+ }
+}
+
+.jumbotron p:last-child {
+ margin-bottom: 0;
+}
+
+.jumbotron-heading {
+ font-weight: 300;
+}
+
+.jumbotron .container {
+ max-width: 40rem;
+}
+
+footer {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+}
+
+footer p {
+ margin-bottom: .25rem;
+}
+
+.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }