Update to site
This commit is contained in:
parent
3345fa5897
commit
b0bdfe2fe9
244 changed files with 11618 additions and 12 deletions
8
sass/oscailte/aside/_github.scss
Normal file
8
sass/oscailte/aside/_github.scss
Normal file
|
@ -0,0 +1,8 @@
|
|||
#github-repos {
|
||||
li {
|
||||
p {
|
||||
font-size: 0.6em;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
16
sass/oscailte/aside/_pinboard.scss
Normal file
16
sass/oscailte/aside/_pinboard.scss
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pinboard {
|
||||
.pin-item > p {
|
||||
margin-bottom: 0;
|
||||
a {
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
&::after {
|
||||
content: ",";
|
||||
}
|
||||
&:last-child::after {
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
0
sass/oscailte/aside/_recent_posts.scss
Normal file
0
sass/oscailte/aside/_recent_posts.scss
Normal file
76
sass/oscailte/aside/_social.scss
Normal file
76
sass/oscailte/aside/_social.scss
Normal file
|
@ -0,0 +1,76 @@
|
|||
.social {
|
||||
ul {
|
||||
@media only screen and (min-width: $lap-start){
|
||||
@include content-columns(2, 10px);
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
@include box-sizing(border-box);
|
||||
background-color: darken($site-background, 5%);
|
||||
border: 1px solid darken($site-background, 10%);
|
||||
border-radius: 4px;
|
||||
color: #222;
|
||||
display: inline-block;
|
||||
font-size: 0.8em;
|
||||
margin-bottom: 7px;
|
||||
padding: 1em;
|
||||
padding-right: 0.5em;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
width: 100%;
|
||||
z-index: 5;
|
||||
@include transition(
|
||||
box-shadow 200ms,
|
||||
color 400ms,
|
||||
transform 400ms
|
||||
);
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
text-decoration: none;
|
||||
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
|
||||
z-index: 7;
|
||||
&::before {
|
||||
border: 1px solid #000;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
background-color: #222;
|
||||
border-radius: 4px;
|
||||
content: "";
|
||||
height: 1px;
|
||||
position: absolute;
|
||||
top: 50%; left: 0%;
|
||||
width: 0;
|
||||
z-index: -1;
|
||||
@include transition(
|
||||
border 200ms,
|
||||
height 200ms 200ms,
|
||||
top 200ms 200ms,
|
||||
width 200ms
|
||||
);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 2em;
|
||||
line-height: 0.8em;
|
||||
margin-right: 0.35em;
|
||||
}
|
||||
|
||||
@each $kvp in $sites {
|
||||
&.#{nth($kvp, 1)} {
|
||||
color: nth($kvp, 2);
|
||||
&::before {
|
||||
background-color: nth($kvp, 2);
|
||||
border-color: darken(nth($kvp, 2), 5%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue