6 | {% for post in site.posts %}
7 |
8 |
9 |
10 |
11 |
12 | {{ post.excerpt }}
13 |
14 |
15 | Read More
16 |
17 | {% endfor %}
18 |
--------------------------------------------------------------------------------
/projects.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Projects
4 | permalink: /projects/
5 | ---
6 |
7 | ### [Project 1](https://github.com/tux4kids/tuxmania)
8 | Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
9 |
10 | ***
11 |
12 | ### [Project 2](https://github.com/AkshayAgarwal007/Moodly)
13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
14 |
15 | Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
16 |
17 | ***
18 |
19 | ## Other Projects
20 |
21 | ### This Could Be Another Project Name
22 |
23 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
24 |
25 | ### This Could Be Yet Another Project Name
26 |
27 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
28 |
29 |
30 | ## Contact me
31 |
32 | [agarwal.akshay.akshay8@gmail.com](mailto:agarwal.akshay.akshay8@gmail.com)
33 |
--------------------------------------------------------------------------------
/style.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 |
4 | //
5 | // IMPORTS
6 | //
7 |
8 | @import "reset";
9 | @import "variables";
10 |
11 |
12 | /**************/
13 | /* BASE RULES */
14 | /**************/
15 |
16 | html {
17 | font-size: 100%;
18 | }
19 |
20 | body {
21 | background: $white;
22 | font: 18px/1.4 $helvetica;
23 | color: $darkGray;
24 | }
25 |
26 | .container {
27 | margin: 0 auto;
28 | max-width: 740px;
29 | padding: 0 10px;
30 | width: 100%;
31 | }
32 |
33 | h1, h2, h3, h4, h5, h6 {
34 | font-family: $helveticaNeue;
35 | color: $darkerGray;
36 | font-weight: bold;
37 |
38 | line-height: 1.7;
39 | margin: 1em 0 15px;
40 | padding: 0;
41 |
42 | @include mobile {
43 | line-height: 1.4;
44 | }
45 | }
46 |
47 | h1 {
48 | font-size: 30px;
49 | color: $h1-color;
50 | a {
51 | color: inherit;
52 | }
53 | }
54 |
55 | h2 {
56 | font-size: 24px;
57 | color: $h2-color;
58 | }
59 |
60 | h3 {
61 | font-size: 20px;
62 | color: $h3-color;
63 | }
64 |
65 | h4 {
66 | font-size: 18px;
67 | color: $h4-color;
68 | }
69 |
70 | p {
71 | margin: 15px 0;
72 | }
73 |
74 | a {
75 | color: $link-color;
76 | text-decoration: none;
77 | cursor: pointer;
78 | &:hover, &:active {
79 | color: darken($link-color,20);
80 | }
81 | }
82 |
83 | ul, ol {
84 | margin: 15px 0;
85 | padding-left: 30px;
86 | }
87 |
88 | ul {
89 | list-style-type: disc;
90 | }
91 |
92 | ol {
93 | list-style-type: decimal;
94 | }
95 |
96 | ol ul, ul ol, ul ul, ol ol {
97 | margin: 0;
98 | }
99 |
100 | ul ul, ol ul {
101 | list-style-type: circle;
102 | }
103 |
104 | em, i {
105 | font-style: italic;
106 | }
107 |
108 | strong, b {
109 | font-weight: bold;
110 | }
111 |
112 | img {
113 | max-width: 100%;
114 | }
115 |
116 | // Fixes images in popup boxes from Google Translate
117 | .gmnoprint img {
118 | max-width: none;
119 | }
120 |
121 | .date {
122 | font-style: italic;
123 | color: $gray;
124 | }
125 |
126 | // Specify the color of the selection
127 | ::-moz-selection {
128 | color: $black;
129 | background: $lightGray;
130 | }
131 | ::selection {
132 | color: $black;
133 | background: $lightGray;
134 | }
135 |
136 | .clearfix:before,
137 | .clearfix:after {
138 | content: " ";
139 | display: table;
140 | }
141 |
142 | .clearfix:after {
143 | clear: both;
144 | }
145 |
146 | /*********************/
147 | /* LAYOUT / SECTIONS */
148 | /*********************/
149 |
150 | //
151 | // .masthead
152 | //
153 |
154 | .wrapper-masthead {
155 | margin-bottom: 50px;
156 | }
157 |
158 | .masthead {
159 | padding: 20px 0;
160 | border-bottom: 1px solid $lightGray;
161 |
162 | @include mobile {
163 | text-align: center;
164 | }
165 | }
166 |
167 | .site-avatar {
168 | float: left;
169 | width: 70px;
170 | height: 70px;
171 | margin-right: 15px;
172 |
173 | @include mobile {
174 | float: none;
175 | display: block;
176 | margin: 0 auto;
177 | }
178 |
179 | img {
180 | border-radius: 5px;
181 | }
182 | }
183 |
184 | .site-info {
185 | float: left;
186 |
187 | @include mobile {
188 | float: none;
189 | display: block;
190 | margin: 0 auto;
191 | }
192 | }
193 |
194 | .site-name {
195 | margin: 0;
196 | color: $darkGray;
197 | cursor: pointer;
198 | font-family: $helveticaNeue;
199 | font-weight: 300;
200 | font-size: 28px;
201 | letter-spacing: 1px;
202 | }
203 |
204 | .site-description {
205 | margin: -5px 0 0 0;
206 | color: $white;
207 | font-size: 16px;
208 |
209 | @include mobile {
210 | margin: 3px 0;
211 | }
212 | }
213 |
214 | nav {
215 | float: right;
216 | margin-top: 23px;
217 | font-family: $helveticaNeue;
218 | font-size: 18px;
219 |
220 | @include mobile {
221 | float: none;
222 | margin-top: 9px;
223 | display: block;
224 | font-size: 16px;
225 | }
226 |
227 | a {
228 | margin-left: 20px;
229 | color: $white;
230 | text-align: right;
231 | font-weight: 300;
232 | letter-spacing: 1px;
233 |
234 | &:hover, &:active {
235 | color: darken($navbar-hover-color,20);
236 | }
237 |
238 | @include mobile {
239 | margin: 0 10px;
240 | color: $white;
241 | }
242 | }
243 | }
244 |
245 | //
246 | // .main
247 | //
248 |
249 | .posts > .post {
250 | padding-bottom: 2em;
251 | border-bottom: 1px solid $lightGray;
252 | }
253 |
254 | .posts > .post:last-child {
255 | padding-bottom: 1em;
256 | border-bottom: none;
257 | }
258 |
259 | .post {
260 | blockquote {
261 | margin: 1.8em .8em;
262 | border-left: 2px solid $gray;
263 | padding: 0.1em 1em;
264 | color: $gray;
265 | font-size: 22px;
266 | font-style: italic;
267 | }
268 |
269 | .comments {
270 | margin-top: 10px;
271 | }
272 |
273 | .read-more {
274 | text-transform: uppercase;
275 | font-size: 15px;
276 | }
277 | }
278 |
279 | .wrapper-footer {
280 | margin-top: 50px;
281 | border-top: 1px solid #ddd;
282 | border-bottom: 1px solid #ddd;
283 | background-color: $lightGray;
284 | }
285 |
286 | footer {
287 | padding: 20px 0;
288 | text-align: center;
289 | }
290 |
291 | @import "highlights";
292 | @import "jekyll-mono";
--------------------------------------------------------------------------------