computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.1 KiB
67 lines
1.1 KiB
import styled from 'styled-components'; |
|
|
|
export const SummaryContainer = styled.div``; |
|
|
|
export const Header = styled.div` |
|
text-align: center; |
|
padding: 45px 30px 55px; |
|
`; |
|
|
|
export const Summary = styled.div` |
|
text-align: center; |
|
padding: 0 0 50px; |
|
|
|
.container { |
|
position: relative; |
|
} |
|
`; |
|
|
|
export const Title = styled.h1` |
|
font-weight: 700; |
|
margin-bottom: 12px; |
|
font-size: 48px; |
|
`; |
|
|
|
export const Description = styled.p` |
|
font-size: 16px; |
|
color: #444444; |
|
`; |
|
|
|
export const Image = styled.img` |
|
width: 100%; |
|
`; |
|
|
|
export const VersionList = styled.div` |
|
margin: 35px 0 15px; |
|
`; |
|
|
|
export const VersionLink = styled.a` |
|
display: inline-block; |
|
position: relative; |
|
padding: 5px 10px 8px; |
|
text-decoration: none; |
|
color: rgb(102, 102, 102); |
|
font-size: 14px; |
|
font-weight: 400; |
|
text-transform: capitalize; |
|
|
|
&.active, &.active:hover { |
|
color: #2d2d2d; |
|
|
|
&:after { |
|
position: absolute; |
|
content: ""; |
|
display: block; |
|
height: 0; |
|
left: 9px; |
|
right: 9px; |
|
bottom: -1px; |
|
border-bottom: 2px solid currentColor; |
|
} |
|
} |
|
|
|
&:hover { |
|
text-decoration: none; |
|
color: #111111; |
|
} |
|
`;
|
|
|