Add more styles for overview page
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
.headline {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: var(--color-white);
|
||||
font-size: 20px;
|
||||
font-weight: normal;
|
||||
|
||||
@@ -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);
|
||||
|
||||
26
styles/components/icon-link.css
Normal file
26
styles/components/icon-link.css
Normal 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%;
|
||||
}
|
||||
}
|
||||
8
styles/components/nav.css
Normal file
8
styles/components/nav.css
Normal file
@@ -0,0 +1,8 @@
|
||||
.nav {
|
||||
&__item {
|
||||
display: inline-block;
|
||||
& + .nav__item {
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
&__item {
|
||||
font-size: 13px;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
13
styles/components/split.css
Normal file
13
styles/components/split.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user