Skip to content
Permalink
6eb3472a15
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
33 lines (31 sloc) 513 Bytes
.part-container {
margin: 100px 50px;
padding: 15px 0px;
}
.part-box {
border-left: 20px solid $blue;
display: flex;
justify-content: space-between;
margin: 15px 0px;
box-shadow: $box-shadow;
position: relative;
transition: all 0.25s ease;
left: 0;
* {
padding: 30px;
}
&:hover {
left: 10px;
}
}
.part-name {
font-weight: 700;
font-size: 16pt;
}
.part-start,
.part-end {
font-size: 12pt;
}
.part-miles {
font-size: 14pt;
}