-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Peak
authored and
Chris Peak
committed
Jul 9, 2024
1 parent
38863d0
commit 6215afc
Showing
4 changed files
with
327 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,82 @@ | ||
.column-navigation-concept { | ||
.timeline-concept { | ||
font-family: 'Open Sans'; | ||
font-weight: 400; | ||
padding: 8px; | ||
border: 1px dotted red; | ||
margin: 10em; | ||
display: flex; | ||
gap: 16px; | ||
margin: 10em 4em; | ||
padding: 80px 8px 8px 8px; | ||
position: relative; | ||
[class*="flag__"] { | ||
border-radius: 10px 10px 10px 0; | ||
color: white; | ||
display: inline-block; | ||
font-size: 34px; | ||
font-weight: bold; | ||
left: 26%; | ||
margin-bottom: 20px; | ||
padding: 4px 16px; | ||
position: absolute; | ||
top: 0; | ||
&:after { | ||
content: ""; | ||
height: 0; | ||
left: 0; | ||
position: absolute; | ||
width: 0; | ||
} | ||
} | ||
|
||
.column { | ||
border-right: 1px solid #D4D8D8; | ||
flex-grow: 1; | ||
a { | ||
color: #494D50; | ||
display: block; | ||
padding: 8px; | ||
text-decoration: none; | ||
font-weight: 400; | ||
&:hover { | ||
background: #d4d4d8; | ||
} | ||
&:after { | ||
content: url('/images/sandbox/chevron.svg'); | ||
float: right; | ||
margin-right: 4px; | ||
} | ||
.flag__normal { | ||
background: #3B85EB; | ||
&:after { | ||
border-bottom: 12px solid transparent; | ||
border-left: 20px solid #3B85EB; | ||
border-top: 12px solid transparent; | ||
bottom: -12px; | ||
} | ||
a.active { | ||
background: #f5f5f5; | ||
} | ||
|
||
.flag__caution { | ||
background: #BB3826; | ||
left: 66%; | ||
border-radius: 10px 10px 0 10px; | ||
&:after { | ||
border-bottom: 12px solid transparent; | ||
border-right: 20px solid #BB3826; | ||
border-top: 12px solid transparent; | ||
bottom: -12px; | ||
left: auto; | ||
right: 0; | ||
} | ||
} | ||
.column.no-chevrons { | ||
a:after { | ||
content: none; | ||
|
||
.stripe { | ||
border-top: 2px solid #dddddd; | ||
margin-bottom: -2px; | ||
width: 100%; | ||
} | ||
|
||
.timeline { | ||
display: flex; | ||
justify-content: space-between; | ||
span { | ||
font-size: 14px; | ||
font-weight: 600; | ||
padding-top: 12px; | ||
position: relative; | ||
text-align: center; | ||
width: 75px; | ||
&:before { | ||
background: #3B85EB; | ||
border-radius: 50%; | ||
content: ""; | ||
display: block; | ||
height: 10px; | ||
left: 45%; | ||
margin: 0 auto; | ||
outline: 5px solid white; | ||
position: absolute; | ||
top: -5px; | ||
width: 10px; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.