testtheme 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +107 -0
  4. data/README.md~ +111 -0
  5. data/_includes/contribute-links.html +11 -0
  6. data/_includes/doc-side-nav.html +62 -0
  7. data/_includes/doc-top-nav.html +17 -0
  8. data/_includes/figure.html +22 -0
  9. data/_includes/footer.html +51 -0
  10. data/_includes/footer.html~ +52 -0
  11. data/_includes/home.html +4 -0
  12. data/_includes/nav.html +45 -0
  13. data/_includes/nav.html~ +45 -0
  14. data/_includes/search-box.html +14 -0
  15. data/_includes/search-box.html~ +14 -0
  16. data/_includes/section-index.html +42 -0
  17. data/_layouts/about.html +12 -0
  18. data/_layouts/base.html +82 -0
  19. data/_layouts/base.html~ +82 -0
  20. data/_layouts/blog.html +17 -0
  21. data/_layouts/bugs.html +12 -0
  22. data/_layouts/community.html +12 -0
  23. data/_layouts/compress.html +10 -0
  24. data/_layouts/default.html +12 -0
  25. data/_layouts/docs.html +62 -0
  26. data/_layouts/docs.html~ +22 -0
  27. data/_layouts/faq.html +10 -0
  28. data/_layouts/landing.html +8 -0
  29. data/_layouts/post.html +26 -0
  30. data/_layouts/search-results.html +35 -0
  31. data/_layouts/troubleshooting.html +12 -0
  32. data/_sass/base/_common.scss +89 -0
  33. data/_sass/base/_config.scss +59 -0
  34. data/_sass/base/_markdown.scss +114 -0
  35. data/_sass/base/_override.scss +82 -0
  36. data/_sass/base/_reset.scss +72 -0
  37. data/_sass/base/_text.scss +46 -0
  38. data/_sass/layouts/_about.scss +2 -0
  39. data/_sass/layouts/_blog.scss +142 -0
  40. data/_sass/layouts/_bugs.scss +2 -0
  41. data/_sass/layouts/_community.scss +14 -0
  42. data/_sass/layouts/_docs.scss +42 -0
  43. data/_sass/layouts/_faq.scss +25 -0
  44. data/_sass/layouts/_landing.scss +192 -0
  45. data/_sass/layouts/_post.scss +12 -0
  46. data/_sass/layouts/_search-results.scss +11 -0
  47. data/_sass/layouts/_troubleshooting.scss +2 -0
  48. data/_sass/layouts/_welcome.scss +2 -0
  49. data/_sass/main.scss +32 -0
  50. data/_sass/materialize/components/_buttons.scss +199 -0
  51. data/_sass/materialize/components/_color.scss +412 -0
  52. data/_sass/materialize/components/_global.scss +32 -0
  53. data/_sass/materialize/components/_mixins.scss +5 -0
  54. data/_sass/materialize/components/_roboto.scss +49 -0
  55. data/_sass/materialize/components/_variables.scss +309 -0
  56. data/_sass/materialize/components/_waves.scss +173 -0
  57. data/_sass/materialize/materialize.scss +15 -0
  58. data/_sass/modules/_buttons.scss +88 -0
  59. data/_sass/modules/_contribute-links.scss +64 -0
  60. data/_sass/modules/_doc-nav.scss +111 -0
  61. data/_sass/modules/_footer.scss +114 -0
  62. data/_sass/modules/_hero.scss +34 -0
  63. data/_sass/modules/_nav.scss +83 -0
  64. data/_sass/modules/_nav.scss~ +214 -0
  65. data/_sass/modules/_search-box.scss +47 -0
  66. data/_sass/modules/_section-index.scss +22 -0
  67. data/_sass/modules/_subscribe-form.scss +47 -0
  68. data/_sass/modules/_syntax-highlighting.scss +62 -0
  69. data/_sass/modules/_toc.scss +62 -0
  70. data/_sass/pages/_about.scss +374 -0
  71. data/_sass/pages/_blog.scss +149 -0
  72. data/_sass/pages/_community.scss +119 -0
  73. data/_sass/pages/_contribute.scss +5 -0
  74. data/_sass/pages/_docs.scss +72 -0
  75. data/_sass/pages/_faq.scss +37 -0
  76. data/_sass/pages/_glossary.scss +38 -0
  77. data/_sass/pages/_landing.scss +111 -0
  78. data/assets/css/styles.scss +71 -0
  79. data/assets/fonts/roboto/Roboto-Bold.eot +0 -0
  80. data/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  81. data/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  82. data/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  83. data/assets/fonts/roboto/Roboto-Light.eot +0 -0
  84. data/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  85. data/assets/fonts/roboto/Roboto-Light.woff +0 -0
  86. data/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  87. data/assets/fonts/roboto/Roboto-Medium.eot +0 -0
  88. data/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  89. data/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  90. data/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  91. data/assets/fonts/roboto/Roboto-Regular.eot +0 -0
  92. data/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  93. data/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  94. data/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  95. data/assets/fonts/roboto/Roboto-Thin.eot +0 -0
  96. data/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  97. data/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  98. data/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  99. data/assets/img/caret-dark.svg +7 -0
  100. data/assets/img/caret.svg +7 -0
  101. data/assets/img/external-link-dark.svg +13 -0
  102. data/assets/img/external-link-icon.png +0 -0
  103. data/assets/img/external-link.svg +13 -0
  104. data/assets/img/github-dark.svg +15 -0
  105. data/assets/img/github-ribbon.svg +128 -0
  106. data/assets/img/github.png +0 -0
  107. data/assets/img/github.svg +15 -0
  108. data/assets/img/group.png +0 -0
  109. data/assets/img/hero-bg.png +0 -0
  110. data/assets/img/icon_github.svg +15 -0
  111. data/assets/img/more-arrow-dark.svg +13 -0
  112. data/assets/img/more-arrow.png +0 -0
  113. data/assets/img/more-arrow.svg +13 -0
  114. data/assets/img/slack.png +0 -0
  115. data/assets/img/stackoverflow.png +0 -0
  116. data/assets/img/x.svg +8 -0
  117. metadata +201 -0
@@ -0,0 +1,119 @@
1
+ .community {
2
+ margin: 0;
3
+
4
+ @media (max-width: $tablet) {
5
+ margin: 0;
6
+ }
7
+
8
+ .lead {
9
+ margin: 50px 0 40px 0;
10
+ }
11
+
12
+ .community-section {
13
+ margin: 45px 0;
14
+
15
+ .external-link-icon {
16
+ margin: -5px 0 0;
17
+ }
18
+
19
+ a::after {
20
+ display: none;
21
+ }
22
+
23
+ .external-link-icon {
24
+ display: inline-block;
25
+ margin-left: 5px;
26
+ }
27
+ }
28
+
29
+ .community-title {
30
+ color: $titleColor;
31
+ font-size: 1.1rem;
32
+ font-weight: 500;
33
+ letter-spacing: .5px;
34
+ margin: 0 0 15px 0;
35
+ }
36
+
37
+ .contribute-wrapper {
38
+ display: table;
39
+ margin: 15px 0 0;
40
+ padding: 0;
41
+ text-align: left;
42
+
43
+ @media (max-width: $tablet) {
44
+ margin: 15px auto 0;
45
+ }
46
+
47
+ .contribute-item {
48
+ margin: 0 0 20px;
49
+ padding: 0;
50
+ }
51
+
52
+ .external-link-icon {
53
+ margin: 10px auto 0;
54
+ }
55
+
56
+ .item-content {
57
+ width: 83%;
58
+ margin: 0 auto;
59
+ }
60
+
61
+ .item-desc {
62
+ font-size: .8rem;
63
+ font-weight: 300;
64
+ line-height: 1.25;
65
+ text-align: center;
66
+ }
67
+
68
+ .item-link {
69
+ display: block;
70
+ font-weight: 400;
71
+ text-decoration: none;
72
+ }
73
+
74
+ .item-box {
75
+ background: $footerText;
76
+ border-radius: 2px;
77
+ display: block;
78
+ margin: 10px auto;
79
+ padding: 25px 0 20px;
80
+ text-align: center;
81
+ width: 95%;
82
+
83
+ &:hover {
84
+ .external-link-icon {
85
+ background: url('../img/external-link-dark.svg') no-repeat center/cover;
86
+ }
87
+ }
88
+ }
89
+ }
90
+
91
+ .mailto {
92
+ color: $titleColor;
93
+ font-weight: 500;
94
+ letter-spacing: .5px;
95
+ text-decoration: underline;
96
+ }
97
+
98
+ .youtube-iframe {
99
+ margin: 20px 0;
100
+ width: 333px;
101
+ height: 200px;
102
+ max-width: 100%;
103
+ @media (min-width: $tablet) {
104
+ height: 300px;
105
+ width: 500px;
106
+ }
107
+ }
108
+
109
+ table, th, td {
110
+ border: 0px;
111
+ margin: 0px;
112
+ padding-left: 30px;
113
+ }
114
+
115
+ td {
116
+ width: 350px;
117
+ text-align: center;
118
+ }
119
+ }
@@ -0,0 +1,5 @@
1
+ .contribute {
2
+ .lead {
3
+ margin-top: 20px;
4
+ }
5
+ }
@@ -0,0 +1,72 @@
1
+ // Docs layout specific
2
+ .docs {
3
+
4
+ *[id]:before {
5
+ display: block;
6
+ content: " ";
7
+ margin-top: -1em;
8
+ height: 1em;
9
+ visibility: hidden;
10
+ }
11
+
12
+ .doc-header {
13
+ padding-bottom: 30px;
14
+ padding-top: 30px;
15
+ }
16
+
17
+ .doc-description {
18
+ color: $dark-gray;
19
+ display: block;
20
+ margin: 0 0 40px;
21
+
22
+ p {
23
+ font-size: 18px;
24
+ font-weight: 400;
25
+ }
26
+ }
27
+
28
+ .use-description {
29
+ color: $gray;
30
+ display: block;
31
+ margin: 20px 0;
32
+
33
+ p {
34
+ font-size: 15px;
35
+ font-weight: 300;
36
+ }
37
+ }
38
+
39
+ .lang-card-selector {
40
+ padding: 0 0 30px;
41
+ width: 100%;
42
+ }
43
+
44
+ .lang-card {
45
+ display: inline-block;
46
+ margin: 0 1% 30px;
47
+ text-align: center;
48
+ vertical-align: top;
49
+ width: 30%;
50
+
51
+ @media (max-width: $tablet) {
52
+ margin: 20px 1%;
53
+ padding: 6px 10px;
54
+ width: 47%;
55
+ }
56
+
57
+ .lang-card-title {
58
+ background: $light-gray;
59
+ color: $dark-gray;
60
+ margin-bottom: 4px;
61
+ padding: 8px;
62
+ text-align: left;
63
+ }
64
+
65
+ .lang-card-link {
66
+ display: block;
67
+ font-size: 14px;
68
+ padding: 8px;
69
+ text-align: left;
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,37 @@
1
+ // FAQ page
2
+ .faq-container {
3
+ padding-bottom: 150px;
4
+
5
+ .submenu-content p,li,ul{
6
+ font-size: 12px;
7
+ font-weight: 400;
8
+ }
9
+
10
+ .lead,
11
+ .faq-title {
12
+ color: $titleColor;
13
+ }
14
+
15
+ .lead {
16
+ margin: 50px 0 40px 0;
17
+ }
18
+
19
+ .faq-title {
20
+ margin: 40px 0 0 0;
21
+ }
22
+
23
+ h6 {
24
+ font-size: .95rem;
25
+ letter-spacing: 1px;
26
+ }
27
+
28
+ h6.arrow-d,
29
+ h6.arrow-r {
30
+ margin: 30px 0 5px 0;
31
+ color: $black;
32
+ }
33
+
34
+ h6.arrow-d {
35
+ color: $black;
36
+ }
37
+ }
@@ -0,0 +1,38 @@
1
+ // Glossary page
2
+ .glossary-container {
3
+ padding-bottom: 15px;
4
+
5
+ .submenu-content p,li,ul{
6
+ font-size: 12px;
7
+ font-weight: 400;
8
+ list-style: none;
9
+ }
10
+
11
+ .lead,
12
+ .glossary-title {
13
+ color: $titleColor;
14
+ }
15
+
16
+ .lead {
17
+ margin: 50px 0 40px 0;
18
+ }
19
+
20
+ .glossary-title {
21
+ margin: 40px 0 40px 0;
22
+ }
23
+
24
+ h6 {
25
+ font-size: .95rem;
26
+ letter-spacing: 1px;
27
+ }
28
+
29
+ h6.arrow-d,
30
+ h6.arrow-r {
31
+ margin: 0px 0 5px 0;
32
+ color: $black;
33
+ }
34
+
35
+ h6.arrow-d {
36
+ color: $black;
37
+ }
38
+ }
@@ -0,0 +1,111 @@
1
+ // Landing page
2
+ .landing-content-container {
3
+ padding-bottom: 60px;
4
+ padding-top: 30px;
5
+ position: relative;
6
+
7
+ @media (min-width: 767px) {
8
+ padding-bottom: 90px;
9
+ padding-top: 90px;
10
+ }
11
+
12
+ .landing-row {
13
+ padding-top: 60px;
14
+
15
+ .landing-row-title {
16
+ margin-bottom: 15px;
17
+ }
18
+
19
+ p {
20
+ font-size: 1.2rem;
21
+ font-weight: 300;
22
+ line-height: 1.5rem;
23
+ padding-bottom: 1.5rem;
24
+ }
25
+
26
+ @media (max-width: 767px) {
27
+ display: flex;
28
+ flex-direction: column;
29
+ text-align: center;
30
+
31
+ .landing-row-title {
32
+ margin: 0 auto 30px;
33
+ order: 1;
34
+ }
35
+
36
+ .landing-image {
37
+ margin: 0 auto 30px;
38
+ order: 2;
39
+ }
40
+
41
+ p {
42
+ margin: 0 auto;
43
+ order: 3;
44
+ }
45
+
46
+ div {
47
+ margin: 0 auto;
48
+ order: 4;
49
+ }
50
+ }
51
+ }
52
+ .landing-image {
53
+ height: auto;
54
+ max-width: 500px;
55
+ object-fit: contain;
56
+ object-position: top;
57
+
58
+ @media (min-width: $tablet) {
59
+ //max-width: initial;
60
+ padding-bottom: 50px;
61
+ }
62
+ }
63
+
64
+ .landing-image-small {
65
+ height: auto;
66
+ max-width: 250px;
67
+ object-fit: contain;
68
+ object-position: top;
69
+
70
+ @media (min-width: $tablet) {
71
+ //max-width: initial;
72
+ padding-bottom: 50px;
73
+ }
74
+ }
75
+
76
+ .btn-read-more {
77
+ margin: 30px 0 40px;
78
+ }
79
+ }
80
+
81
+ //Documentation call to action
82
+ .doc-call-container {
83
+ background-color: lighten($thirdBrandColor, 4%);
84
+ padding-bottom: 70px;
85
+ padding-top: 70px;
86
+
87
+ .doc-call-title {
88
+ margin: 0 auto;
89
+ }
90
+
91
+ .doc-call-text {
92
+ margin: 0 auto;
93
+ padding-top: 5px;
94
+ }
95
+
96
+ .btn-doc-call {
97
+ font-size: 14px;
98
+ margin: 25px auto 45px;
99
+ }
100
+
101
+ .lang-select-row {
102
+ display: flex;
103
+ justify-content: center;
104
+ }
105
+
106
+ .lang-selector-text {
107
+ margin: 0 auto;
108
+ padding-bottom: 10px;
109
+ width: 75%;
110
+ }
111
+ }
@@ -0,0 +1,71 @@
1
+ ---
2
+ sitemap_exclude: y
3
+ ---
4
+
5
+ @import url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css");
6
+
7
+ // Colors: edit to add your site's color scheme here
8
+
9
+ // Brand Colors
10
+ $mainBrandColor: #466BB0;
11
+ $secondBrandColor: #286AC7;
12
+ $thirdBrandColor: #98B2E0;
13
+ $inverseBrandColor: #FFFFFF;
14
+
15
+ // Use as an accent color in small quantities to balance out the main theme.
16
+ $popBrandColor: hsl(3, 90%, 75%);
17
+ $lightPopBrandColor: lighten($popBrandColor, 15%);
18
+
19
+ // General Colors
20
+ $black: #2E2E2E;
21
+ $white: #FFFFFF;
22
+ $gray: #737373;
23
+ $light-gray: lighten($gray, 52%);
24
+ $dark-gray: darken($gray, 20%);
25
+
26
+ $linkColor: $mainBrandColor;
27
+ $linkHoverColor: darken($linkColor, 10%);
28
+ $linkColorSecondary: $white;
29
+ $linkColorTertiary: $gray;
30
+ $codeColor: darken($linkColor, 20%);
31
+ $codeBkColor: lighten($thirdBrandColor, 10%);
32
+ $wellColor: #F9F9F9;
33
+ $textColor: #535f61;
34
+ $titleColor: #555555;
35
+ $headingsColor: rgb(21, 91, 103);
36
+ $footerColor: #4e4f4f;
37
+ $footerText: #eaeaea;
38
+ $errorColor: #C40003;
39
+
40
+ // Import template stylesheets
41
+
42
+ @import "base/config";
43
+ @import "base/reset";
44
+ @import "base/common";
45
+ @import "base/text";
46
+ @import "base/override";
47
+ @import "base/markdown";
48
+
49
+ @import "modules/buttons";
50
+ @import "modules/doc-nav";
51
+ @import "modules/footer";
52
+ @import "modules/hero";
53
+ @import "modules/nav";
54
+ @import "modules/search-box";
55
+ @import "modules/section-index";
56
+ @import "modules/syntax-highlighting";
57
+
58
+ @import "layouts/about";
59
+ @import "layouts/blog";
60
+ @import "layouts/bugs";
61
+ @import "layouts/community";
62
+ @import "layouts/docs";
63
+ @import "layouts/faq";
64
+ @import "layouts/landing";
65
+ @import "layouts/post";
66
+ @import "layouts/search-results";
67
+ @import "layouts/troubleshooting";
68
+
69
+ // Additional CSS including overrides for imported stylesheet settings goes here
70
+
71
+