36 lines
419 B
SCSS
36 lines
419 B
SCSS
a.box {
|
|
&:hover {
|
|
box-shadow: 0 2px 3px rgba($black, 0.1), 0 0 0 1px $blue
|
|
}
|
|
}
|
|
|
|
#homepage {
|
|
.box {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.centering {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.highlighted{
|
|
background: $tile-orange;
|
|
.content {
|
|
color: white;
|
|
|
|
h1, h2 {
|
|
color: inherit;
|
|
}
|
|
a {
|
|
color:inherit;
|
|
}
|
|
}
|
|
}
|
|
#quote{
|
|
font-style: italic;
|
|
}
|
|
|
|
.icon a{
|
|
color:$tile-orange;
|
|
}
|