Welcome to mirror list, hosted at ThFree Co, Russian Federation.

changelog.scss « assets - github.com/jsnjack/hugo-changelog-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15d56f9ff13c0906e07d53dd1c3c232899df9c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
$tag-added: #32b643;
$tag-changed:#ffb700;
$tag-deprecated: #acb3c2;
$tag-removed: #2176ff;
$tag-fixed: #a1548b;
$tag-security: #e85600;

// $primary-color: #e54747;

// Variables and mixins
@import "spectre/src/variables";
@import "spectre/src/mixins";

/*! Spectre.css v#{$version} | MIT License | github.com/picturepan2/spectre */
// Reset and dependencies
@import "spectre/src/normalize";
@import "spectre/src/base";

// Elements
@import "spectre/src/typography";
// @import "spectre/src/asian";
// @import "spectre/src/tables";
// @import "spectre/src/buttons";
// @import "spectre/src/forms";
@import "spectre/src/labels";
// @import "spectre/src/codes";
// @import "spectre/src/media";

// Layout
@import "spectre/src/layout";
// @import "spectre/src/navbar";

// Components
// @import "spectre/src/accordions";
// @import "spectre/src/avatars";
// @import "spectre/src/badges";
// @import "spectre/src/breadcrumbs";
// @import "spectre/src/bars";
// @import "spectre/src/cards";
// @import "spectre/src/chips";
// @import "spectre/src/dropdowns";
// @import "spectre/src/empty";
// @import "spectre/src/menus";
// @import "spectre/src/modals";
// @import "spectre/src/navs";
@import "spectre/src/pagination";
// @import "spectre/src/panels";
// @import "spectre/src/popovers";
// @import "spectre/src/steps";
// @import "spectre/src/tabs";
// @import "spectre/src/tiles";
// @import "spectre/src/toasts";
// @import "spectre/src/tooltips";

// Utility classes
// @import "spectre/src/animations";
@import "spectre/src/utilities";

@import "spectre/src/timelines";


.tag-added {
    background: $tag-added;
}
.tag-changed {
    background: $tag-changed;
}

.tag-deprecated {
    background: $tag-deprecated;
}

.tag-removed {
    background: $tag-removed;
}

.tag-fixed {
    background: $tag-fixed;
}

.tag-security {
    background: $tag-security;
}

.changes li {
    list-style: none;
}

.changes h4 {
    margin-bottom: 0;
}

.full-screen-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    font-size: 200%;
    text-decoration: none;
    color: #363636;
}
.full-screen-message a {
    display: inline-block;
}

.experimental ul {
    margin: 0.4em;
}

li code {
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    background-color: rgba(27,31,35,0.05);
    border-radius: 3px;
    vertical-align: middle;
}