From 977e7f7f2ec3e500b0fc755a1ed6c43532a5fb28 Mon Sep 17 00:00:00 2001 From: Nithika Senaweera <33777572+ns200310@users.noreply.github.com> Date: Mon, 18 May 2020 22:31:22 +0530 Subject: [PATCH] Update main.css Added css for the footer --- css/main.css | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 79 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index d45c44a..5840c4f 100644 --- a/css/main.css +++ b/css/main.css @@ -158,4 +158,82 @@ body{ .r-se3-cardt{ font-size: 100%; -} \ No newline at end of file +} +/*footer */ +section { + padding: 60px 0; +} +.img1 { + max-width: 100%; + height: auto; +} + +section .section-title { + text-align: center; + color: #007b5e; + margin-bottom: 50px; + text-transform: uppercase; +} +#footer { + background: #000000 !important; +} +#footer h5{ + padding-left: 10px; + border-left: 3px solid #eeeeee; + padding-bottom: 6px; + margin-bottom: 20px; + color:#ffffff; +} +#footer a { + color: #ffffff; + text-decoration: none !important; + background-color: transparent; + -webkit-text-decoration-skip: objects; +} +#footer ul.social li{ + padding: 3px 0; +} +#footer ul.social li a i { + margin-right: 5px; + font-size:25px; + -webkit-transition: .5s all ease; + -moz-transition: .5s all ease; + transition: .5s all ease; +} +#footer ul.social li:hover a i { + font-size:30px; + margin-top:-10px; +} +#footer ul.social li a, +#footer ul.quick-links li a{ + color:#ffffff; +} +#footer ul.social li a:hover{ + color:#eeeeee; +} +#footer ul.quick-links li{ + padding: 3px 0; + -webkit-transition: .5s all ease; + -moz-transition: .5s all ease; + transition: .5s all ease; +} +#footer ul.quick-links li:hover{ + padding: 3px 0; + margin-left:5px; + font-weight:700; +} +#footer ul.quick-links li a i{ + margin-right: 5px; +} +#footer ul.quick-links li:hover a i { + font-weight: 700; +} + +@media (max-width:767px){ + #footer h5 { + padding-left: 0; + border-left: transparent; + padding-bottom: 0px; + margin-bottom: 10px; +} +}