opposition-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +48 -0
  4. data/_includes/.DS_Store +0 -0
  5. data/_includes/footer.html +12 -0
  6. data/_includes/head.html +21 -0
  7. data/_includes/header.html +13 -0
  8. data/_includes/scripts.html +7 -0
  9. data/_includes/sidebar.html +35 -0
  10. data/_layouts/.DS_Store +0 -0
  11. data/_layouts/default.html +20 -0
  12. data/_layouts/home.html +28 -0
  13. data/_layouts/page.html +39 -0
  14. data/_layouts/post.html +23 -0
  15. data/_sass/.DS_Store +0 -0
  16. data/_sass/base/_footer.scss +54 -0
  17. data/_sass/base/_header.scss +64 -0
  18. data/_sass/base/_reset.scss +65 -0
  19. data/_sass/base/_sidebar.scss +29 -0
  20. data/_sass/home/.DS_Store +0 -0
  21. data/_sass/home/_about.scss +125 -0
  22. data/_sass/home/_contact.scss +70 -0
  23. data/_sass/home/_home.scss +102 -0
  24. data/_sass/home/_partners.scss +136 -0
  25. data/_sass/home/_services.scss +100 -0
  26. data/_sass/home/_testimonial.scss +61 -0
  27. data/_sass/opposition.scss +139 -0
  28. data/_sass/page/_news.scss +91 -0
  29. data/_sass/post/_post.scss +19 -0
  30. data/assets/.DS_Store +0 -0
  31. data/assets/img/.DS_Store +0 -0
  32. data/assets/img/21savage.jpg +0 -0
  33. data/assets/img/Eye.svg +20 -0
  34. data/assets/img/Phoenix.svg +17 -0
  35. data/assets/img/about.jpg +0 -0
  36. data/assets/img/azae.png +0 -0
  37. data/assets/img/bird.jpg +0 -0
  38. data/assets/img/bird/.DS_Store +0 -0
  39. data/assets/img/bird/A-Rocks.png +0 -0
  40. data/assets/img/bird/B-Light.png +0 -0
  41. data/assets/img/bird/C-Particles.png +0 -0
  42. data/assets/img/bird/D-Particles.png +0 -0
  43. data/assets/img/bird/E-Phoenix.png +0 -0
  44. data/assets/img/bird/F-Fire.png +0 -0
  45. data/assets/img/bird/G-Dust.png +0 -0
  46. data/assets/img/bird/H-Stuff.png +0 -0
  47. data/assets/img/bird/bg.png +0 -0
  48. data/assets/img/contact.png +0 -0
  49. data/assets/img/hnhh.png +0 -0
  50. data/assets/img/home.jpg +0 -0
  51. data/assets/img/icon.gif +0 -0
  52. data/assets/img/logic.jpg +0 -0
  53. data/assets/img/logo.png +0 -0
  54. data/assets/img/logo.svg +32 -0
  55. data/assets/img/meechie.jpg +0 -0
  56. data/assets/img/opposition-blog-header.jpg +0 -0
  57. data/assets/img/opposition_seal.png +0 -0
  58. data/assets/img/s.png +0 -0
  59. data/assets/img/services-bg.jpg +0 -0
  60. data/assets/img/support.svg +31 -0
  61. data/assets/js/.DS_Store +0 -0
  62. data/assets/js/all.js +41 -0
  63. data/assets/js/form.js +114 -0
  64. data/assets/js/parallax.js +550 -0
  65. data/assets/main.scss +5 -0
  66. metadata +150 -0
@@ -0,0 +1,100 @@
1
+ #services {
2
+ background: url("../../assets/img/services-bg.jpg") center top / cover fixed no-repeat;
3
+ text-align: center;
4
+ padding: 40px 0;
5
+ .services-list {
6
+ @include center;
7
+ position: relative;
8
+ overflow: auto;
9
+ margin: 30px auto 0 auto;
10
+ &:after {
11
+ content: '';
12
+ background: $accentFontColor;
13
+ display: none;
14
+ position: absolute;
15
+ top: 15px;
16
+ left: 50%;
17
+ height: 98%;
18
+ width: 1px;
19
+ }
20
+ li {
21
+ position: relative;
22
+ width: 100%;
23
+ clear: both;
24
+ margin: 0 0 30px 0;
25
+ h3 {
26
+ display: inline-block;
27
+ vertical-align: middle;
28
+ letter-spacing: .2em;
29
+ }
30
+ span {
31
+ color: $accentFontColor;
32
+ font-size: 2em;
33
+ vertical-align: middle;
34
+ }
35
+ p {
36
+ color: white;
37
+ font-size: .9em;
38
+ font-weight: 200;
39
+ line-height: 1.8em;
40
+ }
41
+ &:before {
42
+ content: '';
43
+ background: $accentFontColor;
44
+ display: none;
45
+ position: absolute;
46
+ top: 5px;
47
+ width: 14px;
48
+ height: 14px;
49
+ border-radius: 50%;
50
+ }
51
+ &:nth-child(odd) {
52
+ float: left;
53
+ text-align: right;
54
+ padding: 0;
55
+ span {
56
+ display: inline-block;
57
+ }
58
+ }
59
+ &:nth-child(even) {
60
+ float: left;
61
+ text-align: left;
62
+ padding: 0;
63
+ }
64
+ }
65
+ }
66
+ }
67
+
68
+ @media only screen and (min-width: $windowSize) {
69
+ #services {
70
+ padding: 80px 0 40px 0;
71
+ .services-list {
72
+ &:after {
73
+ display: block;
74
+ }
75
+ li {
76
+ width: 38%;
77
+ &:before {
78
+ display: block;
79
+ }
80
+ &:nth-child(odd) {
81
+ float: left;
82
+ padding: 0 2% 0 10%;
83
+ span {
84
+ display: inline-block;
85
+ }
86
+ &:before {
87
+ right: -8px;
88
+ }
89
+ }
90
+ &:nth-child(even) {
91
+ float: right;
92
+ padding: 0 10% 0 2%;
93
+ &:before {
94
+ left: -6px;
95
+ }
96
+ }
97
+ }
98
+ }
99
+ }
100
+ }
@@ -0,0 +1,61 @@
1
+ #platform {
2
+ background: $accentFontColor;
3
+ padding: 30px 0;
4
+ ul {
5
+ @include center;
6
+ width: 100%;
7
+ padding: 0%;
8
+ display: block;
9
+ }
10
+ li {
11
+ flex: 1 auto;
12
+ width: 90%;
13
+ padding: 0 5%;
14
+ &:nth-child(2) {
15
+ img {
16
+ max-width: 70px;
17
+ }
18
+ }
19
+ }
20
+ h3 {
21
+ display: flex;
22
+ justify-content: center;
23
+ align-items: center;
24
+ float: none;
25
+ background: #2e2e2e;
26
+ width: 130px;
27
+ height: 130px;
28
+ margin: 0 auto;
29
+ border-radius: 50%;
30
+ img {
31
+ flex: 1 auto;
32
+ max-width: 100px;
33
+ // max-height: 80px;
34
+ // max-width: 90px;
35
+ }
36
+ }
37
+ p {
38
+ font-size: .75em;
39
+ line-height: 2em;
40
+ text-align: left;
41
+ margin: 20px 0 0 0;
42
+
43
+ }
44
+ }
45
+
46
+ @media only screen and (min-width: $windowSize) {
47
+ #platform {
48
+ padding: 0;
49
+ ul {
50
+ display: flex;
51
+ border-right: 1px solid black;
52
+ }
53
+ li {
54
+ padding: 5%;
55
+ border-left: 1px solid black;
56
+ }
57
+ p {
58
+ text-align: justify;
59
+ }
60
+ }
61
+ }
@@ -0,0 +1,139 @@
1
+ @charset "utf-8";
2
+
3
+ // Define defaults for each variable.
4
+ $titleFont: "ff-good-headline-web-pro-con",sans-serif;
5
+ $base-font-family: "acumin-pro-condensed", sans-serif !default;
6
+ $base-font-size: 16px !default;
7
+ $base-font-weight: 400 !default;
8
+ $small-font-size: $base-font-size * 0.875 !default;
9
+ $base-line-height: 1.5 !default;
10
+
11
+ $spacing-unit: 30px !default;
12
+
13
+ $accentFontColor: #c1a468;
14
+ $mainFontColor: #2e2e2e;
15
+
16
+ // Width of the content area
17
+ $windowSize: 940px;
18
+ $maxWidth: 720px;
19
+
20
+ // $content-width: 800px !default;
21
+
22
+ // $on-palm: 600px !default;
23
+ // $on-laptop: 800px !default;
24
+
25
+
26
+ @mixin button {
27
+ color: $accentFontColor;
28
+ padding: 5px 20px;
29
+ border: 1px solid $accentFontColor;
30
+ &:hover {
31
+ color: lighten($accentFontColor, 20%);
32
+ border: 1px solid lighten($accentFontColor, 20%);
33
+ }
34
+ }
35
+ @mixin center {
36
+ float: none;
37
+ max-width: $maxWidth;
38
+ width: 90%;
39
+ padding: 0 5%;
40
+ margin: 0 auto;
41
+ @media only screen and (min-width: $windowSize) {
42
+ width: 100%;
43
+ padding: 0;
44
+ }
45
+ }
46
+ @mixin title {
47
+ font-weight: 400;
48
+ color: $accentFontColor;
49
+ text-transform: uppercase;
50
+ }
51
+ @mixin link-border {
52
+ color: $accentFontColor;
53
+ border: 1px solid $accentFontColor;
54
+ &:hover {
55
+ color: lighten($accentFontColor, 20%);
56
+ border: 1px solid lighten($accentFontColor, 20%);
57
+ }
58
+ }
59
+
60
+ @mixin submit-button {
61
+ background: $accentFontColor;
62
+ color: #2e2e2e;
63
+ text-transform: uppercase;
64
+ font-size: 1em;
65
+ padding: 0 15px;
66
+ border: none;
67
+ cursor: pointer;
68
+ &.disabled {
69
+ background: #ccc;
70
+ pointer-events: none;
71
+ cursor: no-drop;
72
+ }
73
+ }
74
+
75
+ @mixin media-query($device) {
76
+ @media screen and (min-width: $device) {
77
+ @content;
78
+ }
79
+ }
80
+
81
+ @mixin relative-font-size($ratio) {
82
+ font-size: $base-font-size * $ratio;
83
+ }
84
+
85
+ .page-header {
86
+ background-size: cover;
87
+ background-position: center;
88
+ background-repeat: no-repeat;
89
+ position: relative;
90
+ height: 485px;
91
+ width: 100%;
92
+ overflow: hidden;
93
+ margin-bottom: 20px;
94
+ display: flex;
95
+ justify-content: center;
96
+ align-items: flex-end;
97
+ .header-title {
98
+ @include center;
99
+ flex: 1 auto;
100
+ max-width: 980px;
101
+ margin-bottom: 30px;
102
+ text-align: left;
103
+ h2 {
104
+ font-size: 3em;
105
+ font-weight: 600;
106
+ letter-spacing: 0;
107
+ text-transform: none;
108
+ color: white;
109
+ }
110
+ }
111
+ }
112
+
113
+ .category {
114
+ display: inline-block;
115
+ color: white;
116
+ margin-right: 10px;
117
+ i {
118
+ &:before {
119
+ color: $accentFontColor;
120
+ vertical-align: middle;
121
+ }
122
+ }
123
+ }
124
+
125
+ // Import partials.
126
+ @import
127
+ "base/reset",
128
+ "base/header",
129
+ "base/footer",
130
+ "base/sidebar",
131
+ "home/about",
132
+ "home/contact",
133
+ "home/home",
134
+ "home/partners",
135
+ "home/services",
136
+ "home/testimonial",
137
+ "page/news",
138
+ "post/post"
139
+ ;
@@ -0,0 +1,91 @@
1
+ .page {
2
+ @include center;
3
+ max-width: 980px;
4
+ text-align: center;
5
+ .post-list {
6
+ display: inline-block;
7
+ vertical-align: top;
8
+ width: 70%;
9
+ max-width: 585px;
10
+ text-align: left;
11
+ li {
12
+ padding-bottom: 50px;
13
+ }
14
+ figure, img {
15
+ width: 100%;
16
+ }
17
+ figure {
18
+ position: relative;
19
+ overflow: hidden;
20
+ height: 280px;
21
+ margin-bottom: 20px;
22
+ }
23
+ img {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 50%;
27
+ transform: translate(-50%, 0);
28
+ }
29
+ .post-details, h2 {
30
+ display: inline-block;
31
+ vertical-align: middle;
32
+ max-width: 75%;
33
+ }
34
+ h2 {
35
+ text-transform: none;
36
+ font-size: 2.5em;
37
+ letter-spacing: 0;
38
+ line-height: 1.1em;
39
+ margin-left: 5%;
40
+ }
41
+ header {
42
+ position: relative;
43
+ background: $accentFontColor;
44
+ display: inline-block;
45
+ width: 105%;
46
+ padding: 2.5%;
47
+ margin: 0 0 -20px -13%;
48
+ z-index: 2;
49
+ a {
50
+ font-weight: 500 !important;
51
+ }
52
+ .month, .day, a {
53
+ color: $mainFontColor;
54
+ font-weight: 700;
55
+ }
56
+ .month {
57
+ font-size: .9em;
58
+ }
59
+ .day {
60
+ font-size: 1.4em;
61
+ line-height: .9em;
62
+ }
63
+ .social-media {
64
+ display: flex;
65
+ clear: both;
66
+ }
67
+ .social-media-button {
68
+ text-align: center;
69
+ flex: 1 auto;
70
+ border: 2px solid $mainFontColor;
71
+ border-top: none;
72
+ padding: 3px 0;
73
+ font-size: .8em;
74
+ }
75
+ .twitter-button {
76
+ border-right: none;
77
+ }
78
+ }
79
+ time {
80
+ float: left;
81
+ text-align: center;
82
+ padding: 5px 15px 10px 15px;
83
+ border: 2px solid $mainFontColor;
84
+ }
85
+ .post-description {
86
+ a {
87
+ color: $mainFontColor !important;
88
+ }
89
+ }
90
+ }
91
+ }
@@ -0,0 +1,19 @@
1
+ .post {
2
+ .wrapper {
3
+ @include center;
4
+ max-width: 980px;
5
+ text-align: left;
6
+ .post-format {
7
+ display: inline-block;
8
+ vertical-align: top;
9
+ width: 70%;
10
+ max-width: 595px;
11
+ text-align: left;
12
+ }
13
+ }
14
+ .created-at {
15
+ color: white;
16
+ border-left: 1px solid white;
17
+ padding-left: 10px;
18
+ }
19
+ }
data/assets/.DS_Store ADDED
Binary file
Binary file
Binary file
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 396 144" style="enable-background:new 0 0 396 144;" xml:space="preserve">
6
+ <style type="text/css">
7
+ .st0{fill:#C1A469;}
8
+ </style>
9
+ <g>
10
+ <path class="st0" d="M287.5,70.9c-12-27.5-48.1-46-89.8-46c-41.7,0-77.8,18.5-89.8,46l-0.4,0.9l0.4,0.9c12,27.5,48.1,46,89.8,46
11
+ c41.7,0,77.8-18.5,89.8-46l0.4-0.9L287.5,70.9z M197.7,114.2c-38.8,0-73.6-17.4-85.2-42.4c11.6-25,46.4-42.4,85.2-42.4
12
+ c38.8,0,73.6,17.4,85.2,42.4C271.4,96.8,236.6,114.2,197.7,114.2z"/>
13
+ <path class="st0" d="M197.7,43.6c-15.6,0-28.3,12.7-28.3,28.2s12.7,28.2,28.3,28.2c15.6,0,28.2-12.7,28.2-28.2
14
+ S213.3,43.6,197.7,43.6z M197.7,95.5c-13.1,0-23.7-10.6-23.7-23.7c0-13.1,10.6-23.7,23.7-23.7c13.1,0,23.7,10.6,23.7,23.7
15
+ C221.5,84.9,210.8,95.5,197.7,95.5z"/>
16
+ <path class="st0" d="M197.7,58.5c-7.4,0-13.4,6-13.4,13.3c0,7.4,6,13.3,13.4,13.3c7.4,0,13.3-6,13.3-13.3
17
+ C211.1,64.5,205.1,58.5,197.7,58.5z M197.7,80.6c-4.9,0-8.8-3.9-8.8-8.8c0-4.9,4-8.8,8.8-8.8c4.8,0,8.8,3.9,8.8,8.8
18
+ C206.5,76.7,202.6,80.6,197.7,80.6z"/>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 396 144" style="enable-background:new 0 0 396 144;" xml:space="preserve">
6
+ <style type="text/css">
7
+ .st0{fill:#C1A469;}
8
+ </style>
9
+ <path class="st0" d="M282.3,16.7c-11.4,3.2-38.2,10.6-44.5,12.4c-0.9,0.2-1.5,0.8-2,1.6c-7.3,13-21.5,28.6-37.8,28.6
10
+ c-16.3,0-30.5-15.6-37.8-28.6c-0.4-0.8-1.1-1.3-2-1.6l-44.5-12.4c-2.4-0.7-4.7,1.5-4.1,3.9c1.2,5.3,2.8,11,5.1,16.8
11
+ c5.9,0.9,11,1.7,11,1.7s-4.4,3.5-7.5,6c2.5,4.9,5.5,9.7,9.2,14.3c3.3-1.3,5.6-2.3,5.6-2.3s-1.1,3-2.2,6.1c4.1,4.5,9,8.6,14.7,12.2
12
+ c1.4-1.1,2.2-1.8,2.2-1.8s-0.1,1.3-0.2,3c6,3.5,12.9,6.4,20.8,8.5c1.1-1.4,1.8-2.2,1.8-2.2s0.2,1.2,0.4,2.8c1.4,0.3,2.8,0.6,4.2,0.9
13
+ c1.6,0.3,2.7,1.7,2.7,3.2v12.9c0,1.2,0.7,2.3,1.7,2.9l17.2,9.4c1,0.5,2.2,0.5,3.2,0l17.2-9.4c1.1-0.6,1.7-1.7,1.7-2.9V89.9
14
+ c0-1.6,1.1-2.9,2.7-3.2c1.4-0.3,2.8-0.6,4.2-0.9c0.3-1.6,0.4-2.8,0.4-2.8s0.7,0.9,1.8,2.2c7.9-2.1,14.8-5,20.8-8.5
15
+ c-0.1-1.8-0.2-3-0.2-3s0.9,0.7,2.2,1.8c5.7-3.6,10.6-7.7,14.7-12.2c-1.1-3.1-2.2-6.1-2.2-6.1s2.3,1,5.6,2.3
16
+ c3.7-4.6,6.8-9.4,9.2-14.3c-3.1-2.5-7.5-6-7.5-6s5.1-0.8,11-1.7c2.3-5.8,4-11.5,5.1-16.8C287,18.1,284.7,16,282.3,16.7z"/>
17
+ </svg>