mirror of
https://github.com/sparkle-project/sparkle-project.github.io.git
synced 2025-11-01 15:35:08 +00:00
afba0e9bee
This is easier to read.
110 lines
2.1 KiB
SCSS
Executable File
110 lines
2.1 KiB
SCSS
Executable File
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
@charset "utf-8";
|
|
|
|
$btn-primary-border: white;
|
|
|
|
$brand-primary: #0099f0;
|
|
|
|
$font-family-sans-serif: "Helvetica Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
$font-size-base: 16px;
|
|
|
|
$gray-base: #333;
|
|
|
|
$headings-color: #333;
|
|
$headings-font-weight: 200;
|
|
$headings-line-height: 1.3;
|
|
|
|
$jumbotron-bg: $brand-primary;
|
|
$jumbotron-color: white;
|
|
|
|
$line-height-base: 1.6;
|
|
|
|
$navbar-height: 100px;
|
|
|
|
$navbar-border-radius: 0;
|
|
$navbar-inverse-bg: $jumbotron-bg;
|
|
$navbar-inverse-color: $jumbotron-color;
|
|
$navbar-inverse-link-color: $jumbotron-color;
|
|
$navbar-inverse-link-hover-color: darken($navbar-inverse-link-color, 10%);
|
|
$navbar-inverse-link-active-color: $navbar-inverse-link-color;
|
|
$navbar-inverse-border: transparent;
|
|
$navbar-inverse-toggle-border-color: $jumbotron-color;
|
|
$navbar-inverse-toggle-hover-bg: transparent;
|
|
|
|
@import "bootstrap";
|
|
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 3em;
|
|
}
|
|
|
|
samp {
|
|
font: inherit;
|
|
background: rgba(0,0,0,0.02);
|
|
padding: 1px;
|
|
}
|
|
|
|
.sparkle-jumbotron {
|
|
text-align: center;
|
|
|
|
img.screenshot {
|
|
width: 100%;
|
|
max-width: 620px;
|
|
}
|
|
|
|
a.btn {
|
|
transition: all 0.4s ease;
|
|
margin-bottom: $padding-base-vertical;
|
|
}
|
|
}
|
|
|
|
.sparkle-features {
|
|
padding-bottom: $jumbotron-padding;
|
|
}
|
|
|
|
.sparkle-users-jumbotron {
|
|
text-align: center;
|
|
|
|
p {
|
|
margin-bottom: ($jumbotron-padding / 2) * 2;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: ($jumbotron-padding / 2); // default
|
|
}
|
|
|
|
ul {
|
|
max-width: 50%;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
|
|
& > li {
|
|
display: inline-block;
|
|
margin: $line-height-computed / 2;
|
|
margin: $line-height-computed / 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
.navbar {
|
|
font-weight: 200;
|
|
}
|
|
|
|
.navbar-home {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-size: $font-size-base * 2;
|
|
|
|
img {
|
|
float: left;
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-top: -((64px - $line-height-computed) / 2);
|
|
margin-right: $line-height-computed;
|
|
}
|
|
}
|