rmcg.dev/FrontendMentor/huddle-landing-page-with-si.../css/style.css

205 lines
4.1 KiB
CSS
Raw Normal View History

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;700&display=swap');
2020-09-02 15:59:54 +02:00
:root {
font-size: 16px;
--site-color: hsl(257, 40%, 49%);
}
body {
2020-09-02 15:59:54 +02:00
background-color: var(--site-color);
background-image: url("../images/bg-desktop.svg");
/* background-repeat: no-repeat;
background-size: contain; */
color: white;
2020-09-02 13:04:55 +02:00
margin: 0;
2020-09-02 17:32:00 +02:00
font-family: 'Open Sans', sans-serif;
}
h1 {
font-family: 'Poppins', sans-serif;
2020-09-02 15:59:54 +02:00
font-weight: 400; /* 400 & 40 are very close*/
font-size: 40px;
}
.logo {
width: 215px;
2020-09-02 15:59:54 +02:00
margin: 3.75% 4.86% 0rem; /* 3.75% 4.375rem 0rem*/
}
.middleSection {
display: flex;
2020-09-02 15:59:54 +02:00
margin: 5.0625rem 0rem 0rem 4.55rem;
}
.siteBlurb {
2020-09-02 15:59:54 +02:00
margin: 1.0625rem 4rem 2rem 3.325rem;
/* line-height: 2rem;
font-weight: 400; */
}
.siteBlurb h1 {
margin-right: 2em;
2020-09-02 15:59:54 +02:00
margin-bottom: 0;
}
.siteBlurb p {
margin-right: 1.5rem;
margin-bottom: 1.5625rem;
line-height: 1.7rem;
font-size: 18px;
font-weight: 400;
}
2020-09-02 15:59:54 +02:00
.registerButton {
background-color: white;
color: var(--site-color);
font-size: 19px;
border: none;
padding: 17px 64px;
text-align: center;
text-decoration: none;
display: inline-block;
/* margin: 4px 2px; */
cursor: pointer;
border-radius: 32px;
box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.4); /* 10px 5px 10px*/
}
.socialButtonsSection {
display: block;
text-align: right;
2020-09-02 15:59:54 +02:00
margin-right: 5.1875rem;
}
.socialButtonsSection i {
2020-09-02 15:59:54 +02:00
padding: 0.5rem;
margin-left: 0.5rem;
margin-top: 0.9375rem;
margin-right: 0;
}
.circleIcon {
2020-09-02 17:32:00 +02:00
margin: 0;
2020-09-02 15:59:54 +02:00
color: white;
background: transparent;
2020-09-02 15:59:54 +02:00
border: 1.75px solid #fff;
width: 20px;
height: 20px;
border-radius: 50%;
text-align: center;
2020-09-02 15:59:54 +02:00
line-height: 20px;
vertical-align: middle;
2020-09-02 15:59:54 +02:00
font-size: 19px;
/* padding: 5px; */
/* border: 2px solid #fff;
border-radius: 50%;
height: 64px;
width: 64px;
position: relative;
left: 8px;
color: transparent; */
}
2020-09-02 15:59:54 +02:00
.circleIcon:hover {
color: blue;
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
/* Formating for Mobile devices. Sample to match is 375z800 */
@media screen and (max-width: 375px) {
2020-09-02 17:32:00 +02:00
body {
background-image: url("../images/bg-mobile.svg");
background-repeat: no-repeat;
2020-09-02 17:32:00 +02:00
/* background-size: contain; */
color: white;
2020-09-02 17:32:00 +02:00
margin: 0;
}
.logo {
width: 128px;
margin: 8.5325% 35px 0rem; /* 3.75% 4.375rem 0rem*/
}
.illustrations {
margin: 3.5rem 2.375rem 1rem;
}
.illustration {
max-width: 100%;
max-height: 100vh;
height: auto;
}
.middleSection {
margin: 0;
display: flex;
flex-direction: column;
}
.siteBlurb {
margin:0;
margin-top: 1rem;
text-align: center;
/* line-height: 2rem;
font-weight: 400; */
}
.siteBlurb h1 {
margin: 1rem 2rem;
font-size: 1.5rem;
}
.siteBlurb p {
margin:0;
}
.registerButton {
background-color: white;
color: var(--site-color);
font-size: 19px;
border: none;
padding: 17px 64px;
text-align: center;
text-decoration: none;
display: inline-block;
/* margin: 4px 2px; */
cursor: pointer;
border-radius: 32px;
box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.4); /* 10px 5px 10px*/
}
.socialButtonsSection {
/* display: block; */
text-align: center;
}
.socialButtonsSection i {
/* padding: 0.5rem; */
/* margin-left: 0.5rem;
margin-top: 0.9375rem;
margin-right: 0; */
}
.circleIcon {
margin: 0;
color: white;
background: transparent;
border: 1.75px solid #fff;
width: 20px;
height: 20px;
border-radius: 50%;
text-align: center;
line-height: 20px;
vertical-align: middle;
font-size: 19px;
}
}