-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01eadbd
commit a5729f3
Showing
26 changed files
with
689 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
{{ content }} | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>{{ page.title }}</title> | ||
<link rel="stylesheet" href="/css/style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<header> | ||
<img class="logo" src="/assets/logo.png"> | ||
</header> | ||
|
||
<section class="main-content"> | ||
{{ content }} | ||
</section> | ||
|
||
<footer> | ||
Resideo © 2022, All Rights Reserved. | ||
</footer> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Primary CI colors | ||
$black: #000; | ||
$white: #fff; | ||
$resideo-red: #D22730; | ||
$canvas: #EDEBDC; | ||
|
||
// Secondary colors | ||
// Dark blue reserved for PRO content | ||
$dark-blue: #153755; | ||
$charcoal: #2E2E2E; | ||
$inactive-gray: #767676; | ||
$gray: #DADADA; | ||
$light-gray: #EDEDED; | ||
$extra-light-gray: #F7F7F7; | ||
|
||
// Accent colors | ||
$medium-blue: #1C6FB9; | ||
|
||
// Use Dark Green in combination when setting text on a light background, | ||
// to meet WCAG Level AA contrast requirements. Do not use the lighter | ||
// Green as a text color on a light background, or as the background color | ||
// with white or light text. | ||
$green: #28AA62; | ||
$dark-green: #1F844D; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
@font-face { | ||
src: url("../assets/fonts/Roboto-Thin.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 100; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
src: url("../assets/fonts/Roboto-ThinItalic.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 100; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
src: url("../assets/fonts/Roboto-Light.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 300; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
src: url("../assets/fonts/Roboto-LightItalic.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 300; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
src: url("../assets/fonts/Roboto-Regular.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 400; | ||
} | ||
|
||
@font-face { | ||
src: url("../assets/fonts/Roboto-Bold.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
src: url("../assets/fonts/Roboto-BoldItalic.ttf"); | ||
font-family: "Roboto"; | ||
font-weight: 700; | ||
font-style: italic; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
@import "colors"; | ||
@import "font-face"; | ||
|
||
$primary-color: #565454; | ||
|
||
body { | ||
font-family: "Roboto"; | ||
color: $primary-color; | ||
margin: 0; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
background-color: $canvas; | ||
|
||
img { | ||
max-width: 100%; | ||
} | ||
|
||
header { | ||
height: 120px; | ||
width: 100%; | ||
background-color: $resideo-red; | ||
|
||
.logo { | ||
height: 100%; | ||
} | ||
} | ||
|
||
footer { | ||
width: 100%; | ||
height: 32px; | ||
padding-top: 14px; | ||
background-color: $black; | ||
color: $white; | ||
text-align: center; | ||
} | ||
|
||
.main-content { | ||
width: 960px; | ||
background-color: $white; | ||
padding: 24px; | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
color: $black; | ||
line-height: 1.3; | ||
font-weight: normal; | ||
text-transform: none; | ||
font-style: normal; | ||
text-decoration: none; | ||
letter-spacing: normal; | ||
} | ||
|
||
h1 { | ||
font-size: 2.4em; | ||
} | ||
|
||
h2 { | ||
font-size: 1.8em; | ||
} | ||
|
||
h3 { | ||
font-size: 1.33em; | ||
font-weight: bold; | ||
} | ||
|
||
h4 { | ||
font-size: 1em; | ||
font-weight: 700; | ||
text-transform: uppercase; | ||
opacity: 0.3; | ||
} | ||
|
||
p { | ||
font-size: 1em; | ||
line-height: 1.4; | ||
font-weight: 400; | ||
text-transform: none; | ||
font-style: normal; | ||
color: $inactive-gray; | ||
|
||
code { | ||
display: block; | ||
color: $charcoal; | ||
background-color: $extra-light-gray; | ||
margin: 0.5em; | ||
padding: 1em; | ||
border-color: $gray; | ||
border-width: 1px; | ||
border-style: solid; | ||
border-radius: 3px; | ||
} | ||
} | ||
|
||
strong { | ||
font-weight: 700; | ||
} | ||
|
||
blockquote { | ||
background-color: $extra-light-gray; | ||
margin: 0.5em; | ||
padding: 1em; | ||
border-color: $gray; | ||
border-width: 1px; | ||
border-style: solid; | ||
border-radius: 3px; | ||
|
||
p { | ||
margin: 0; | ||
font-style: italic; | ||
} | ||
|
||
em { | ||
font-weight: 700; | ||
} | ||
} | ||
|
||
div.highlighter-rouge pre.highlight { | ||
padding: 0.5em; | ||
} | ||
|
||
ul.task-list li { | ||
list-style: none; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
margin-top: 2em; | ||
margin-bottom: 1em; | ||
margin-left: auto; | ||
margin-right: auto; | ||
border-spacing: 0; | ||
|
||
td, | ||
th { | ||
padding: 1.5em; | ||
} | ||
|
||
thead th { | ||
background-color: $charcoal; | ||
color: $white; | ||
font-weight: bold; | ||
font-size: 1em; | ||
border: 1px solid $gray; | ||
} | ||
|
||
tbody { | ||
td { | ||
border: 1px solid $gray; | ||
} | ||
|
||
tr { | ||
background-color: $light-gray; | ||
} | ||
|
||
tr:nth-child(odd) { | ||
background-color: $white; | ||
} | ||
} | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.