diff options
author | Sashi20 | 2020-01-02 10:55:13 +0530 |
---|---|---|
committer | Sashi20 | 2020-01-02 10:55:13 +0530 |
commit | cad21bd234528f53d3baa462f6cd17d4fe90f723 (patch) | |
tree | ac5f5afff2df137fa5362ead375ed402f9c05e2d /css/fellowship_testimonials.css | |
parent | c0c1a78adf2b96f05b71040889fc980716e6132a (diff) | |
download | fellowship_testimonials-cad21bd234528f53d3baa462f6cd17d4fe90f723.tar.gz fellowship_testimonials-cad21bd234528f53d3baa462f6cd17d4fe90f723.tar.bz2 fellowship_testimonials-cad21bd234528f53d3baa462f6cd17d4fe90f723.zip |
Fellowship testimonials module
Diffstat (limited to 'css/fellowship_testimonials.css')
-rwxr-xr-x | css/fellowship_testimonials.css | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/css/fellowship_testimonials.css b/css/fellowship_testimonials.css new file mode 100755 index 0000000..4f741af --- /dev/null +++ b/css/fellowship_testimonials.css @@ -0,0 +1,69 @@ +#testimonials-wrapper .testimonial { + position: relative; + text-align: justify; + margin: 25px 0 0 0; + padding: 0 0 10px 0; + background: #e5e5e5; + padding: 10px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; +} +#testimonials-wrapper .testimonial > .author { + text-align: right; + font-weight: bolder; + margin: 15px 0 0 0; + background: #ffffff; + padding: 10px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; +} +.tabcontent { + display: none; + padding: 6px 12px; +} +.container-testimonial { + border: 2px solid #ccc; + background-color: #eee; + border-radius: 5px; + padding: 16px; + margin: 10px 0; +} +video { + max-width: 100%; + height: auto !important; +} +.container-testimonial::after { + content: ""; + clear: both; + display: table; +} + +.container-testimonial video { + float: left; + margin-right: 20px; +} + +.container-testimonial span { + font-size: 20px; +} + +.container-testimonial p { + margin: 0px !important; +} + + +@media (max-width: 500px) { + .container-testimonial { + text-align: center; + } + .container-testimonial video { + margin: auto; + float: none; + display: block; + } +} + |