jekyll-theme-h2o-ac 1.0.0 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/dev/sass/app.scss DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * Jekyll Theme Style
3
- * - author: liaokeyu (liaokeyu.com)
4
- */
5
- @import 'helper';
6
- @import 'base';
7
- @import 'common';
8
- @import 'layouts'
data/dev/sass/base.scss DELETED
@@ -1,46 +0,0 @@
1
- /** Font **/
2
- @font-face {
3
- font-family: "Merriweather";
4
- src: url("../fonts/Merriweather-Regular.ttf");
5
- }
6
- @font-face {
7
- font-family: "Merriweather-Light";
8
- src: url("../fonts/Merriweather-Light.ttf");
9
- }
10
-
11
- /*** Base ***/
12
- html, body {
13
- height: 100%;
14
- }
15
- html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, textarea,
16
- form, label, legend, table, caption, menu, nav, section, summary,
17
- time, mark, audio, video, iframe, main, header, footer {
18
- padding: 0;
19
- margin: 0;
20
- border: 0;
21
- outline: 0 none;
22
- }
23
- body {
24
- font-family: $fonts;
25
- color: $color-f-secondary;
26
- -webkit-font-smoothing: antialiased;
27
- background-color: $color-bg;
28
- }
29
- ul {
30
- list-style-type: none;
31
- }
32
- a {
33
- color: $color-f-primary;
34
- text-decoration: none;
35
- cursor: pointer;
36
- transition: .2s;
37
- }
38
- ::selection {
39
- background-color: rgba(0, 147, 254, .2);
40
- }
41
- ::-moz-selection {
42
- background-color: rgba(0, 147, 254, .2);
43
- }
44
- ::-webkit-selection {
45
- background-color: rgba(0, 147, 254, .2);
46
- }