jekyll-theme-hydra 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,37 @@
1
+ .editor-link, .nav-open nav .editor-link {
2
+ display: none;
3
+ margin-top: 0;
4
+
5
+ .btn {
6
+ border: 0;
7
+ border-radius: 2px;
8
+ width: 100%;
9
+ max-width: 500px;
10
+ box-sizing: border-box;
11
+ font-size: 2rem;
12
+ text-decoration: none;
13
+ padding: 10px 15px;
14
+ margin: 0;
15
+ font-size: 18px;
16
+ }
17
+
18
+ nav &, .btn {
19
+ cursor: pointer;
20
+ background-color: #f7e064;
21
+ color: #333;
22
+ box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
23
+
24
+ &:hover {
25
+ background-color: #f4d525;
26
+ color: #333;
27
+ }
28
+ }
29
+ }
30
+
31
+ .cms-editor-active .editor-link {
32
+ display: block;
33
+ }
34
+
35
+ .cms-editor-active nav .editor-link {
36
+ display: inline;
37
+ }
@@ -0,0 +1,32 @@
1
+ .map {
2
+ width: 100%;
3
+ margin: 100px 0;
4
+ height: 400px;
5
+ }
6
+
7
+ .contact-box {
8
+ @extend %flexbox;
9
+ @include flex-flow(wrap);
10
+ max-width: 750px;
11
+ margin: 0 auto;
12
+
13
+ form {
14
+ width: 100%
15
+ }
16
+
17
+ p {
18
+ margin: 0;
19
+ }
20
+
21
+ .contact-form, .contact-details {
22
+ @media #{$desktop} {
23
+ -webkit-flex: 1;
24
+ flex: 1;
25
+ }
26
+ margin: 0 30px;
27
+ }
28
+
29
+ .contact-details {
30
+ font-size: .9em;
31
+ }
32
+ }
@@ -0,0 +1,54 @@
1
+ html {
2
+ background: #2b2b40;
3
+ }
4
+
5
+ html, body {
6
+ margin: 0;
7
+ padding: 0;
8
+ }
9
+
10
+ body {
11
+ font-family: "San Francisco", "Helvetica Neue", "Helvetica", "Arial";
12
+ }
13
+
14
+ a {
15
+ color: #00a4ca;
16
+ text-decoration: none;
17
+ }
18
+
19
+ a:hover {
20
+ text-decoration: underline;
21
+ }
22
+
23
+ img {
24
+ width: 100%;
25
+ }
26
+
27
+ h1 strong, h2 strong {
28
+ font-weight: 700;
29
+ }
30
+
31
+ h1 {
32
+ font-weight: 300;
33
+ font-size: 2.3em;
34
+ margin: 0;
35
+ }
36
+
37
+ h2 {
38
+ font-weight: 300;
39
+ font-size: 2.2em;
40
+ margin: 0 0 30px 0;
41
+ }
42
+
43
+ h3 {
44
+ margin: 20px 0 10px 0;
45
+ }
46
+
47
+
48
+ p, address {
49
+ font-size: 1.38em;
50
+ color: #666;
51
+ margin-bottom: 20px;
52
+ font-weight: 300;
53
+ line-height: 1.4em;
54
+ }
@@ -0,0 +1,121 @@
1
+ .footer-links {
2
+ width: 100%;
3
+ margin: 10px;
4
+ padding: 0;
5
+
6
+ @media #{$tablet} {
7
+ -webkit-flex: 1 0 180px;
8
+ flex: 1 0 180px;
9
+ }
10
+
11
+ li {
12
+ list-style: none;
13
+ margin: 15px auto;
14
+
15
+ @media #{$tablet} {
16
+ max-width: 150px;
17
+ }
18
+ a {
19
+
20
+ &:hover {
21
+ text-decoration: none;
22
+ }
23
+ svg {
24
+ fill: #999;
25
+ margin-right: 10px;
26
+ transition: fill 0.2s ease;
27
+ vertical-align: middle;
28
+ position: relative;
29
+ top: -2px;
30
+ width: 22px;
31
+ height: 22px;
32
+ }
33
+
34
+ &:hover svg {
35
+ fill: #fff;
36
+ }
37
+
38
+ &.twitter-icon:hover svg {
39
+ fill: #55acee;
40
+ }
41
+
42
+ &.google-plus-icon:hover svg {
43
+ fill: #db4437;
44
+ }
45
+
46
+ &.youtube-icon:hover svg {
47
+ fill: #cd201f;
48
+ }
49
+
50
+ &.instagram-icon:hover svg {
51
+ fill: #f167f5;
52
+ }
53
+
54
+ &.linkedin-icon:hover svg {
55
+ fill: #0077b5;
56
+ }
57
+
58
+ &.pinterest-icon:hover svg {
59
+ fill: #bd081c;
60
+ }
61
+
62
+ &.rss-icon:hover svg {
63
+ fill: #f26522;
64
+ }
65
+ }
66
+ }
67
+ }
68
+
69
+ footer {
70
+ padding: 50px 0 50px 0;
71
+ font-size: 1.1em;
72
+ position: relative;
73
+ background: #2b2b40;
74
+ color: #fff;
75
+
76
+ .copyright {
77
+ font-size: .8em;
78
+ margin: 0 auto;
79
+
80
+ @media #{$tablet} {
81
+ text-align: center;
82
+ }
83
+
84
+ }
85
+
86
+ &,
87
+ a {
88
+ color: #999;
89
+ }
90
+
91
+ h2 {
92
+ font-size: 1.4em;
93
+ margin: 30px 0;
94
+ color: #ccc;
95
+ }
96
+
97
+ .footer-columns {
98
+ @extend %flexbox;
99
+ @include flex-flow(wrap);
100
+ margin: -10px -10px 10px -10px;
101
+ }
102
+
103
+ a {
104
+ text-decoration: none;
105
+
106
+ &:hover {
107
+ color: #fff;
108
+ }
109
+ }
110
+
111
+ .legal-line {
112
+ width: 100%;
113
+ padding: 30px 0;
114
+ margin: 0;
115
+ background-color: #222527;
116
+
117
+ a {
118
+ font-weight: 600;
119
+ }
120
+ }
121
+ }
@@ -0,0 +1,67 @@
1
+ .button a, input[type=submit] {
2
+ color: #fff;
3
+ text-decoration: none;
4
+ padding: 10px 30px;
5
+ background: $brand-color;
6
+ border-radius: 3px;
7
+ border: 1px solid rgba(255,255,255,.5);
8
+ transition: .2s ease-in-out;
9
+ }
10
+
11
+ .button a:hover, input[type=submit]:hover {
12
+ border: 1px solid #fff;
13
+ background: $secondary-brand-color;
14
+ cursor: pointer;
15
+ }
16
+
17
+ .button.alt a {
18
+ background: rgba(255,255,255,0.15);
19
+ border-radius: 3px;
20
+ border: 1px solid rgba(255, 255, 255, 0.3);
21
+ padding: 16px 50px;
22
+ }
23
+
24
+ .button.alt a:hover {
25
+ background: #fff;
26
+ color: $brand-color;
27
+ }
28
+
29
+ textarea, input, button, select { font-family: inherit; font-size: inherit; }
30
+
31
+ input[type=submit] {
32
+ margin: 20px 0 0 0;
33
+ }
34
+
35
+ label, input, textarea {
36
+ display: block;
37
+ width: 100%;
38
+ box-sizing: border-box;
39
+ }
40
+
41
+ textarea {
42
+ resize: vertical;
43
+ height: 150px;
44
+ }
45
+
46
+ label {
47
+ margin: 20px 0 5px 0;
48
+ }
49
+
50
+ input, textarea {
51
+ padding: 10px;
52
+ font-size: 1em;
53
+ }
54
+
55
+ input, textarea {
56
+ -webkit-transition: all 0.30s ease-in-out;
57
+ -moz-transition: all 0.30s ease-in-out;
58
+ -ms-transition: all 0.30s ease-in-out;
59
+ -o-transition: all 0.30s ease-in-out;
60
+ outline: none;
61
+ border: 1px solid #DDDDDD;
62
+ }
63
+
64
+ input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
65
+ box-shadow: 0 0 5px rgba(81, 203, 238, 1);
66
+ border: 1px solid rgba(81, 203, 238, 1);
67
+ }
@@ -0,0 +1,62 @@
1
+ .bottom-cta {
2
+ background: linear-gradient(to bottom, $brand-color 0%, $middle-gradient-color 100%);
3
+ color: #fff;
4
+ text-align: center;
5
+ margin: 0;
6
+ padding: 100px 0;
7
+
8
+ h2 {
9
+ margin-bottom: 50px;
10
+ }
11
+ }
12
+
13
+ .testimonial {
14
+ background: #f5f5f5;
15
+ margin: 0;
16
+ padding: 100px 0;
17
+
18
+ .testimonial-block {
19
+ max-width: 750px;
20
+ width: 98%;
21
+ margin: 0 auto;
22
+
23
+ @media #{$tablet} {
24
+ @include flexbox;
25
+
26
+ blockquote {
27
+ -webkit-flex: 1;
28
+ flex: 1;
29
+ }
30
+ }
31
+ }
32
+ }
33
+
34
+ .hero {
35
+ color: #ffffff;
36
+ text-align: center;
37
+ background: linear-gradient(to bottom, $middle-gradient-color 0%, $secondary-brand-color 100%) no-repeat #a05fb7;
38
+ padding-top: 50px;
39
+
40
+ p {
41
+ color: #fff;
42
+ }
43
+ }
44
+
45
+
46
+ @media #{$desktop} {
47
+ .flex {
48
+ @include flexbox;
49
+ align-items: center;
50
+ flex-direction: row;
51
+
52
+ .text, .image {
53
+ -webkit-flex: 1;
54
+ flex: 1;
55
+ padding: 0 20px;
56
+ }
57
+ }
58
+
59
+ .content section:nth-child(even) .flex {
60
+ flex-direction: row-reverse;
61
+ }
62
+ }
@@ -0,0 +1,174 @@
1
+ .container, .text-container {
2
+ margin: 0 auto;
3
+ position: relative;
4
+ padding: 0 20px;
5
+ }
6
+
7
+ .text-container {
8
+ max-width: 750px;
9
+ }
10
+
11
+ .container {
12
+ max-width: 1140px;
13
+
14
+ &.max-container {
15
+ max-width: 100%;
16
+ padding: 0;
17
+ }
18
+ }
19
+
20
+ header {
21
+ color: #fff;
22
+ padding: 20px 0;
23
+ background: $brand-color; /* Old browsers */
24
+ background: linear-gradient(to bottom, $brand-color 0%, $middle-gradient-color 100%) no-repeat $brand-color;
25
+
26
+ a {
27
+ color: #fff;
28
+ text-decoration: none;
29
+ z-index: 1;
30
+ position: relative;
31
+
32
+ &:hover {
33
+ text-decoration: none;
34
+ }
35
+ }
36
+
37
+ .company-name {
38
+ font-size: 1.7em;
39
+ line-height: 0;
40
+
41
+ a {
42
+ display: inline-block;
43
+ }
44
+
45
+ img {
46
+ display: block;
47
+ width: auto;
48
+ }
49
+ }
50
+ }
51
+
52
+ .content {
53
+ background: #fff;
54
+ padding: 1px 0 0 0;
55
+ position: relative;
56
+ }
57
+
58
+ .screenshot{
59
+ max-width: 100%;
60
+ height: auto;
61
+ display: block;
62
+ box-shadow: 0 1px 0 #ccc, 0 1px 0 1px #eee;
63
+ border-radius: 2px;
64
+ margin-left: auto;
65
+ margin-right: auto;
66
+ background: #DDD url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2212%22%20viewBox%3D%220%200%2044%2012%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3Ccircle%20cx%3D%2238%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3C%2Fsvg%3E') 4px 4px no-repeat;
67
+ padding: 20px 0 0 0;
68
+ position: relative;
69
+ }
70
+
71
+ section {
72
+ padding: 100px 0;
73
+ }
74
+
75
+ section + section {
76
+ padding-top: 0;
77
+ }
78
+
79
+ .subtext {
80
+ margin-top: 10px;
81
+ text-align: center;
82
+ }
83
+
84
+
85
+ .cta {
86
+ margin: 60px 0;
87
+ }
88
+
89
+ .page h2 {
90
+ text-align: center;
91
+ }
92
+
93
+ blockquote {
94
+ padding: 18px 25px;
95
+ margin: 0;
96
+ quotes: "\201C""\201D""\2018""\2019";
97
+ font-style: italic;
98
+
99
+ .author {
100
+ display: block;
101
+ font-weight: bold;
102
+ margin: 10px 0 0 0;
103
+ font-size: .85em;
104
+ font-style: normal;
105
+ }
106
+
107
+ p {
108
+ display: inline;
109
+ }
110
+ }
111
+
112
+ blockquote:before {
113
+ color: #ccc;
114
+ content: open-quote;
115
+ font-size: 4em;
116
+ line-height: 0.1em;
117
+ margin-right: 0.25em;
118
+ vertical-align: -0.4em;
119
+ }
120
+
121
+ .square-image {
122
+ width: 150px;
123
+ height: 150px;
124
+ overflow: hidden;
125
+ margin: 25px auto 0 auto;
126
+ position: relative;
127
+ border-radius: 200px;
128
+
129
+ img {
130
+ position: absolute;
131
+ left: -1000%;
132
+ right: -1000%;
133
+ top: -1000%;
134
+ bottom: -1000%;
135
+ margin: auto;
136
+ width: 300px;
137
+ }
138
+ }
139
+
140
+ .page {
141
+ margin-bottom: 0;
142
+ padding-bottom: 80px;
143
+ }
144
+
145
+ .center-text {
146
+ text-align: center;
147
+ }
148
+
149
+ .editor-link {
150
+ display: none;
151
+ margin-top: 0;
152
+ .btn {
153
+ border: 0;
154
+ border-radius: 2px;
155
+ width: 100%;
156
+ max-width: 500px;
157
+ box-sizing: border-box;
158
+ font-size: 2rem;
159
+ text-decoration: none;
160
+ padding: 10px 15px;
161
+ margin: 0;
162
+ font-size: 18px;
163
+ cursor: pointer;
164
+ background-color: #f7e064;
165
+ color: #333;
166
+ box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
167
+
168
+ &:hover {
169
+ background-color: #f4d525;
170
+ color: #333;
171
+ }
172
+ }
173
+
174
+ }