mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
265 lines
3.9 KiB
SCSS
265 lines
3.9 KiB
SCSS
/**
|
|
* Reset some basic elements
|
|
*/
|
|
/*body, h1, h2, h3, h4, h5, h6,
|
|
p, blockquote, pre, hr,
|
|
dl, dd, ol, ul, figure {
|
|
margin: 0;
|
|
padding: 0;
|
|
}*/
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: justify;
|
|
-moz-text-align-last: left;
|
|
text-align-last: left;
|
|
}
|
|
|
|
/**
|
|
* Basic styling
|
|
*/
|
|
body {
|
|
/*font-family: $base-font-family;*/
|
|
font-size: $base-font-size;
|
|
line-height: $base-line-height;
|
|
/*font-weight: 300;*/
|
|
color: $text-color;
|
|
background-color: white;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
|
|
/**
|
|
* Set `margin-bottom` to maintain vertical rhythm
|
|
*/
|
|
/*h1, h2, h3, h4, h5, h6,*/
|
|
p, blockquote, pre,
|
|
ul, ol, dl, figure,
|
|
%vertical-rhythm {
|
|
margin-bottom: $spacing-unit / 2;
|
|
}
|
|
|
|
/**
|
|
* Styles from index
|
|
*/
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
body {
|
|
padding-top: 50px;
|
|
margin-bottom: 50px;
|
|
}
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 40px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.project_title h1{
|
|
font-size: 64px; text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
.project_title {
|
|
padding: 40px 20px;
|
|
text-align: center;
|
|
border-radius: 6px;
|
|
|
|
p {
|
|
text-align: center;
|
|
-moz-text-align-last: center;
|
|
}
|
|
}
|
|
.lead {
|
|
color:#245580;
|
|
}
|
|
.project_overview {
|
|
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 18px;
|
|
padding: 40px; padding-bottom: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.learn_more {
|
|
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 18px;
|
|
padding: 40px; padding-bottom: 20px;
|
|
}
|
|
.container .copyright_and_license_notice {
|
|
margin: 8px 0;
|
|
font-size:14px; text-align: center;
|
|
color:#3C3C3C;
|
|
}
|
|
|
|
|
|
/**
|
|
* Images
|
|
*/
|
|
img {
|
|
max-width: 100%;
|
|
vertical-align: middle;
|
|
display: block;
|
|
margin: 0 auto;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Figures
|
|
*/
|
|
figure > img {
|
|
display: block;
|
|
}
|
|
|
|
figcaption {
|
|
font-size: $small-font-size;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Lists
|
|
*/
|
|
/*ul, ol {
|
|
margin-left: $spacing-unit;
|
|
}*/
|
|
|
|
li {
|
|
> ul,
|
|
> ol {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Headings
|
|
*/
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 300;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Links
|
|
*/
|
|
a {
|
|
color: $brand-color;
|
|
text-decoration: none;
|
|
|
|
&:visited {
|
|
color: darken($brand-color, 15%);
|
|
}
|
|
|
|
&:hover {
|
|
color: $text-color;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Blockquotes
|
|
*/
|
|
blockquote {
|
|
color: $grey-color;
|
|
border-left: 4px solid $grey-color-light;
|
|
padding-left: $spacing-unit / 2;
|
|
font-size: 18px;
|
|
letter-spacing: -1px;
|
|
font-style: italic;
|
|
|
|
> :last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Code formatting
|
|
*/
|
|
pre,
|
|
code {
|
|
font-size: 15px;
|
|
border: 1px solid $grey-color-light;
|
|
border-radius: 3px;
|
|
background-color: #f7f7f7;
|
|
font-family: Courier;
|
|
}
|
|
|
|
code {
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
pre {
|
|
padding: 8px 12px;
|
|
|
|
> code {
|
|
border: 0;
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Wrapper
|
|
*/
|
|
.wrapper {
|
|
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
|
|
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding-right: $spacing-unit;
|
|
padding-left: $spacing-unit;
|
|
@extend %clearfix;
|
|
|
|
@include media-query($on-laptop) {
|
|
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
|
|
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
|
padding-right: $spacing-unit / 2;
|
|
padding-left: $spacing-unit / 2;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Clearfix
|
|
*/
|
|
%clearfix {
|
|
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Icons
|
|
*/
|
|
.icon {
|
|
|
|
> svg {
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
vertical-align: middle;
|
|
|
|
path {
|
|
fill: $grey-color;
|
|
}
|
|
}
|
|
}
|