Commit b66a8685 by Madhankumar

unsed css removed

parent 0c451bc3
...@@ -9,7 +9,7 @@ body { ...@@ -9,7 +9,7 @@ body {
} }
.container { .container {
display: grid; display: grid;
grid-template-columns: repeat(3,1fr); grid-template-columns: repeat(3, 1fr);
min-height: 100vh; min-height: 100vh;
max-width: 1920px; max-width: 1920px;
margin: 0 auto; margin: 0 auto;
...@@ -22,7 +22,7 @@ body { ...@@ -22,7 +22,7 @@ body {
} }
.card-body { .card-body {
display: grid; display: grid;
grid-template-columns: repeat(2,1fr); grid-template-columns: repeat(2, 1fr);
} }
.card-text { .card-text {
...@@ -34,8 +34,6 @@ body { ...@@ -34,8 +34,6 @@ body {
font-size: 15px; font-size: 15px;
} }
.card-text img, .card-text img,
.logo img { .logo img {
height: 50px; height: 50px;
...@@ -51,9 +49,6 @@ body { ...@@ -51,9 +49,6 @@ body {
.card-image img { .card-image img {
max-width: 100%; max-width: 100%;
max-height: 50vh; max-height: 50vh;
display: block; /* it removes extra space */
} }
.card p { .card p {
...@@ -94,7 +89,7 @@ hr { ...@@ -94,7 +89,7 @@ hr {
@media only screen and (max-width: 768px) { @media only screen and (max-width: 768px) {
.container { .container {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
min-height: calc(100vh - 67px); min-height: calc(100vh - 67px);
} }
.card .card-body { .card .card-body {
...@@ -141,72 +136,66 @@ hr { ...@@ -141,72 +136,66 @@ hr {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
} }
} }
@media only screen and (min-width: 769px) { @media only screen and (min-width: 769px) {
.container { .container {
display: grid; display: grid;
grid-template-columns:repeat(2,1fr); grid-template-columns: repeat(2, 1fr);
min-height: 50vh; min-height: 50vh;
} }
.card-body { .card-body {
display: grid; display: grid;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding-left: 50px; padding-left: 50px;
} }
.card-text{ .card-text {
width:100%; width: 100%;
font-size: 14px; font-size: 14px;
} }
.card-text, .title,
.sub-title { .sub-title {
font-size: 16px; font-size: 16px;
} }
.card-image img{ .card-image img {
padding: 22px; padding: 22px;
} }
.container > div:nth-child(6) > .card-body .card-image img{ .container > div:nth-child(6) > .card-body .card-image img {
padding: 0px;
padding: 0px; }
}
} }
@media only screen and (min-width: 1023px) { @media only screen and (min-width: 1023px) {
.container { .container {
grid-template-columns: repeat(3,1fr); grid-template-columns: repeat(3, 1fr);
} }
.logo img { .logo img {
height: 45px; height: 45px;
} }
.card-text, .title,
.sub-title { .sub-title {
font-size: 14px; font-size: 14px;
} }
.card-body{ .card-body {
padding-left: 45px; padding-left: 45px;
} }
.card-image img{ .card-image img {
padding:18px; padding: 18px;
} }
} }
@media only screen and (min-width: 1441px) { @media only screen and (min-width: 1441px) {
.card { .card {
height: 50vh; height: 50vh;
} }
.title,.sub-title{ .title,
.sub-title {
font-size: 18px; font-size: 18px;
} }
.card-body{ .card-body {
padding-left: 85px; padding-left: 85px;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment