65 lines
765 B
SCSS
65 lines
765 B
SCSS
|
|
|
|
.app-side
|
|
{
|
|
width: 280px;
|
|
float: left;
|
|
position: fixed;
|
|
|
|
h1
|
|
{
|
|
//margin-bottom: 10px;
|
|
}
|
|
|
|
.robot
|
|
{
|
|
width: 30px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
@media #{$small}
|
|
{
|
|
width: 100%;
|
|
float: none;
|
|
position: relative;
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
|
|
.app-description
|
|
{
|
|
margin: 10px 0 30px 0;
|
|
//color: $midColor;
|
|
}
|
|
|
|
.app-nuget
|
|
{
|
|
code
|
|
{
|
|
background: darken($lightColor, 4%);
|
|
border-radius: 4px;
|
|
padding: 10px 20px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.app-social
|
|
{
|
|
margin-top: 30px;
|
|
|
|
a
|
|
{
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: 2em;
|
|
margin-right: 20px;
|
|
color: darken($lightColor, 15%);
|
|
|
|
&:hover
|
|
{
|
|
color: $secondaryColor;
|
|
}
|
|
}
|
|
} |