-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #942 from sau-mili/patch2
feat: Counter added, Numeric status section improved
- Loading branch information
Showing
5 changed files
with
166 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
|
||
|
||
/* counter */ | ||
.wrapper { | ||
|
||
width: 80%; | ||
|
||
margin-left: auto; | ||
margin-right: auto; | ||
align-items: center; | ||
display: flex; | ||
justify-content: space-between; | ||
|
||
} | ||
.countitem { | ||
width: 28vmin; | ||
height: 28vmin; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-around; | ||
padding: 1em 0; | ||
font-size: 16px; | ||
border-width: 0.5px ; | ||
border-color: solid purple; | ||
border-radius: 0.5em; | ||
background: linear-gradient(white,rgb(153, 139, 251)); | ||
border-bottom: 10px solid #40349c; | ||
} | ||
i { | ||
color: #06006e; | ||
font-size: 2.5em; | ||
text-align: center; | ||
} | ||
span.num { | ||
color: #32316a; | ||
display: grid; | ||
place-items: center; | ||
font-weight: 600; | ||
font-size: 3em; | ||
} | ||
span.text { | ||
color: #6c2121; | ||
font-size: 1.2em; | ||
text-align: center; | ||
padding: 0em 00em; | ||
font-weight: 400; | ||
margin-bottom: 1em; | ||
line-height: 0; | ||
} | ||
@media screen and (max-width: 1024px) { | ||
.wrapper { | ||
width: 85vw; | ||
} | ||
.countitem{ | ||
height: 26vmin; | ||
width: 26vmin; | ||
font-size: 12px; | ||
} | ||
} | ||
@media screen and (max-width: 768px) { | ||
.wrapper { | ||
width: 90vw; | ||
flex-wrap: wrap; | ||
gap: 30px; | ||
} | ||
.countitem { | ||
width: calc(50% - 40px); | ||
height: 30vmin; | ||
font-size: 14px; | ||
} | ||
} | ||
@media screen and (max-width: 480px) { | ||
.wrapper { | ||
gap: 15px; | ||
} | ||
.countitem { | ||
width: 100%; | ||
height: 25vmin; | ||
font-size: 8px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,3 +137,4 @@ document.getElementById('emailInput').addEventListener('blur', function() { | |
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -317,4 +317,6 @@ input[type="submit"]{ | |
width: 100%; | ||
} | ||
|
||
/* New NAvbar CSS Ends Here*/ | ||
/* New NAvbar CSS Ends Here*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters