hubl/src/styles_old/base/about.scss

56 lines
1.2 KiB
SCSS
Raw Normal View History

2020-05-28 21:16:23 +00:00
#about{
2020-06-01 10:42:35 +00:00
h2,h3{
text-transform: uppercase;
}
h2{
margin-left: 1.5em;
}
2020-06-01 10:42:35 +00:00
.flex-content-white{
display: flex;
@media only screen and (max-width: 768px) {
flex-direction: column;
}
>div{
padding: 2em 2.5em;
2020-06-01 10:42:35 +00:00
text-align: center;
margin: 0 1.5em 3em 1.5em;
2020-06-01 10:42:35 +00:00
background: white;
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11);
display: flex;
flex-direction: column;
justify-content: space-between;
}
>div:first-child{
width: 60%;
}
>div:last-child{
width: 35%;
@media only screen and (max-width: 768px) {
width: 60%;
}
}
a{
text-decoration: none;
}
2020-06-01 10:42:35 +00:00
}
2020-05-29 08:16:53 +00:00
2020-06-01 10:42:35 +00:00
.main-cta{
2020-10-08 07:55:56 +00:00
background: var(--color-white) none repeat scroll 0% 0%;
border: 1px solid var(--color-primary);
2020-06-01 10:42:35 +00:00
border-radius: 55px;
2020-10-08 07:55:56 +00:00
color: var(--color-primary);
2020-06-01 10:42:35 +00:00
cursor: pointer;
font-weight: bold;
text-transform: uppercase;
2020-06-15 15:59:05 +00:00
width: 50%;
font-size: 1.1rem;
align-self: center;
padding: 0.5rem 1.5rem;
2020-06-01 10:42:35 +00:00
}
2020-06-01 10:42:35 +00:00
.main-cta:hover{
2020-10-08 07:55:56 +00:00
background: var(--color-primary) none repeat scroll 0% 0%;
border : 1px solid var(--color-primary);
color: var(--color-white);
2020-06-01 10:42:35 +00:00
}
2020-05-28 21:16:23 +00:00
}