ailur-website/static/css/index.css

175 lines
2.9 KiB
CSS
Raw Permalink Normal View History

2024-10-30 20:43:38 +00:00
@import "common.css";
.background {
height: 350px;
background-position: bottom;
background-image: url("/static/img/background.png");
}
.welcome {
height: 350px;
color: #fff;
display: flex;
flex-direction: column;
text-align: center;
}
.welcome h1 {
2024-11-26 19:42:03 +00:00
font-size: 60px;
2024-10-30 20:43:38 +00:00
font-size: clamp(20px, 60px, 12vw);
margin: 65px 0 0 0;
}
.welcome p {
2024-11-26 19:42:03 +00:00
font-size: 20px;
2024-10-30 20:43:38 +00:00
font-size: clamp(5px, 20px, 3.3vw);
width: 29em;
margin: 10px auto 0 auto;
}
.welcome a {
font-size: 18px;
margin-left: auto;
margin-right: auto;
}
.welcome .buttons {
width: 345px;
margin: 50px auto 0 auto;
display: flex;
}
.services, .fulgens, .partners, .callToAction {
display: flex;
2024-11-26 19:42:03 +00:00
background-color: #fff;
2024-10-30 20:43:38 +00:00
flex-direction: column;
text-align: center;
}
.services h1 {
font-size: 40px;
margin: 20px 0 0 0;
}
.services p {
margin: 10px 0 35px 0;
font-size: 18px;
}
.services .serviceGrid {
display: flex;
margin: 0 30px 0 30px;
justify-content: center;
}
.services .serviceGrid div {
display: flex;
flex-direction: column;
2024-11-26 19:42:03 +00:00
background-color: #EBEBEB;
2024-10-30 20:43:38 +00:00
padding: 40px;
border-radius: 20px;
width: 340px;
margin: 0 10px 20px;
}
.services .serviceGrid h2 {
margin: 0;
font-size: 20px;
}
.services .serviceGrid img {
height: 48px;
2024-11-26 19:42:03 +00:00
width: 48px;
margin: 0 auto;
2024-10-30 20:43:38 +00:00
}
.services .serviceGrid p {
font-size: 16px;
line-height: 1.5;
}
.services .serviceGrid .button {
margin-top: auto;
}
.fulgens {
padding: 20px 15vw 50px 15vw;
2024-11-26 19:42:03 +00:00
background-color: #EBEBEB;
2024-10-30 20:43:38 +00:00
flex-direction: row;
justify-content: space-evenly;
}
.fulgens div {
width: 100%;
display: flex;
flex-direction: column;
}
2024-11-26 19:42:03 +00:00
.fulgens .dashboard {
2024-10-30 20:43:38 +00:00
width: 100%;
2024-11-26 19:42:03 +00:00
background-size: cover;
background-position: center;
background-image: url("/static/img/dashboard.png");
2024-10-30 20:43:38 +00:00
border-radius: 25px;
margin: 0 0 0 20%;
}
.fulgens div .buttons {
margin-top: auto;
display: flex;
flex-direction: row;
justify-content: center;
border-radius: 25px;
}
.fulgens div .button {
margin: 0 5px 0 5px;
}
.fulgens div .buttons .unimportant {
2024-11-26 19:42:03 +00:00
border: 1px solid #DCDCDC;
2024-10-30 20:43:38 +00:00
}
.callToAction .image {
2024-11-26 19:42:03 +00:00
top: 0;
2024-10-30 20:43:38 +00:00
background-image: url("/static/img/callToAction.jpg");
height: 800px;
}
.callToAction {
height: 800px;
background: none;
justify-content: center;
2024-11-26 19:42:03 +00:00
position: relative;
2024-10-30 20:43:38 +00:00
}
.callToAction .content {
height: 400px;
width: 70vw;
margin-left: auto;
margin-right: auto;
2024-11-26 19:42:03 +00:00
background-color: #fff;
2024-10-30 20:43:38 +00:00
border-radius: 25px;
display: flex;
flex-direction: column;
}
.callToAction .content .subtext {
margin-top: 45px;
font-size: 18px;
}
.callToAction .content h1 {
font-size: 45px;
margin-top: 20px;
}
.callToAction .content p {
font-size: 18px;
margin: 0 80px 35px 80px;
}
.callToAction .content a {
margin: auto auto 40px auto;
2024-11-26 19:42:03 +00:00
width: 90px;
2024-10-30 20:43:38 +00:00
}