Add more styles for overview page

This commit is contained in:
Tom Raithel
2017-02-11 12:30:48 +01:00
parent fc81624813
commit 56f9495a59
10 changed files with 69 additions and 10 deletions

View File

@@ -3,10 +3,10 @@
display: inline-block;
padding: 0 15px;
text-transform: uppercase;
border-radius: 15px;
font-size: 14px;
line-height: 30px;
height: 30px;
border-radius: 13px;
font-size: 12px;
line-height: 25px;
height: 25px;
overflow: hidden;
&--adopt {

View File

@@ -1,4 +1,6 @@
.headline {
margin: 0;
padding: 0;
color: var(--color-white);
font-size: 20px;
font-weight: normal;

View File

@@ -1,8 +1,9 @@
.hero-headline {
font-size: 40px;
font-size: 38px;
font-weight: 300;
color: var(--color-white);
margin-bottom: 70px;
margin: 0 0 60px;
padding: 0;
&__alt {
color: var(--color-gray-light);

View File

@@ -0,0 +1,26 @@
.icon-link {
display: inline-block;
position: relative;
text-decoration: none;
padding-left: 30px;
height: 25px;
font-size: 14px;
line-height: 25px;
color: var(--color-gray-normal);
&:hover {
color: var(--color-white);
}
&:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 25px;
height: 25px;
/* TODO icon*/
background: var(--color-gray-normal);
border-radius: 50%;
}
}

View File

@@ -0,0 +1,8 @@
.nav {
&__item {
display: inline-block;
& + .nav__item {
margin-left: 20px;
}
}
}

View File

@@ -1,9 +1,10 @@
.quadrant-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
&__quadrant {
flex: 0 0 50%;
flex: 0 0 45%;
margin-bottom: 40px;
}
}

View File

@@ -5,6 +5,6 @@
&__item {
font-size: 13px;
display: block;
margin-bottom: 10px;
margin-bottom: 12px;
}
}

View File

@@ -0,0 +1,13 @@
.split {
display: flex;
align-items: center;
justify-content: space-between;
&__left {
flex: 0 1 auto;
}
&__right {
flex: 0 1 auto;
}
}