mirror of
https://github.com/ivabus/www
synced 2024-11-23 00:25:11 +03:00
Changed named of homepage css file, added breakpoint media queries
This commit is contained in:
parent
fbbb80262f
commit
31662397d9
2 changed files with 44 additions and 12 deletions
|
@ -48,7 +48,7 @@
|
|||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||
<link rel="apple-touch-icon-precomposed" href="/favicon-180.png">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/homepage.css">
|
||||
<link rel="stylesheet" href="/css/typography.css">
|
||||
<link rel="stylesheet" href="/css/navbar.css">
|
||||
<link rel="stylesheet" href="/css/generative-art.css">
|
||||
|
|
|
@ -34,16 +34,25 @@ html,body{
|
|||
|
||||
/* Brand Colors */
|
||||
|
||||
/* Type Colors: */
|
||||
/* Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.*/
|
||||
.teal{color:#00ffd0;}
|
||||
.black{color:#1a1a1a;}
|
||||
.dark-gray{color:#4d4d4d;}
|
||||
.grid-gray{color:#949494;}
|
||||
.light-gray{color: #e1e1e1;}
|
||||
.white{color:#ffffff;}
|
||||
.purple{color: #8000ff;}
|
||||
.orange{color: #ff4100;}
|
||||
|
||||
.teal{color:#00ffd0;}.black{color:#1a1a1a;}.dark-gray{color:#4d4d4d;}.grid-gray{color:#949494;}.light-gray{color: #e1e1e1;}.white{color:#ffffff;}.purple{color: #8000ff;}.orange{color: #ff4100;}
|
||||
|
||||
/* Background Colors */
|
||||
/*Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.*/
|
||||
|
||||
.teal-bg{background-color:#00ffd0;}.black-bg{background-color: #1a1a1a;}.dark-gray-bg{background-color: #4d4d4d;}.grid-gray-bg{background-color: #949494;}.light-gray-bg{background-color: #e1e1e1;}.white-bg{background-color: #ffffff;}.purple-bg{background-color: #8000ff;}.orange-bg{background-color: #ff4100;}
|
||||
/* Background Colors */
|
||||
|
||||
.teal-bg{background-color:#00ffd0;}
|
||||
.black-bg{background-color: #1a1a1a;}
|
||||
.dark-gray-bg{background-color: #4d4d4d;}
|
||||
.grid-gray-bg{background-color: #949494;}
|
||||
.light-gray-bg{background-color: #e1e1e1;}
|
||||
.white-bg{background-color: #ffffff;}
|
||||
.purple-bg{background-color: #8000ff;}
|
||||
.orange-bg{background-color: #ff4100;}
|
||||
|
||||
/* Spacers & Dividers */
|
||||
|
||||
|
@ -54,11 +63,34 @@ hr{
|
|||
}
|
||||
|
||||
/* Homepage */
|
||||
|
||||
@media only screen and (min-width: 1200px) {
|
||||
|
||||
.hero-section{
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 576px) and (max-width: 768px){
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 576px) {
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@media only screen and (min-width: 1200px) {
|
||||
|
||||
.impact-section{
|
||||
background-image: url("/Images/impact-section-grid.svg");
|
Loading…
Reference in a new issue