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

color-theme.css « css « static - github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94236074ed3db92287bbeb287d27bbc2c006275b (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
From material design color palette:

#dcedc8 - Light Green 100
#9ccc65 - Light Green 400
#558b2f - Light Green 800

#bdbdbd - Gray 400
#757575 - Gray 600
#424242 - Gray 800

#000000 - Black
*/

/* pure colors for hamburg-theme foreign HTML documents */
.primary-color-very-light {
	color: #dcedc8;
}

.primary-color {
	color: #558b2f;
}

.gray-light {
	color: #bdbdbd;
}

.gray-dark {
	color: #757575;
}

.gray-very-dark {
	color: #424242;
}

/*
...1B - 10% transparent
...4D - 30% transparent
...80 - 50% transparent
*/
.delimiter{
    border-bottom: 1px solid #0000001B;
}

.header-text {
    background-color: #0000004d;
    color: #fff;
}

.header-text .tag-line {
    color: #fff;
}

.header-text h1 a {
    color: #fff;
}

/* The social-icons */
.global-footer .sns-links a {
    border: 1px solid #757575;
    color: #757575;
}

.global-footer .sns-links a:hover {
    border: 1px solid #558b2f;
    color: #558b2f;
}

/* The whole footer-area */
.global-footer {
    color: #757575;
}

.post-date {
    color: #757575;
}

a:hover,
a:focus {
    color: #558b2f;
}

/* Tags of articles and pages */
.post-tag a {
  border: 1px solid #757575;
  color: #757575;
}

.post-tag a:hover {
	background-color: #dcedc8;
}

.not-found h1 {
    color: #757575;
}

.author-bio {
    color: #757575;
}

/* Color for e.g. headers and links */
.text-primary, a {
    color: #558b2f;
}

/* Primary buttons are the ones in the page (not in the header) */
.btn-primary {
    background-color: transparent;
    border-color: #558b2f;
    color: #558b2f;
}

.btn-primary:focus,
.btn-primary:hover {
    color: #558b2f;
    background-color: #dcedc8;
    border-color: #558b2f;
}

.btn-primary.disabled,
.btn-primary.disabled:focus,
a.btn-primary.disabled,
a.btn-primary.disabled:focus {
    color: #757575;
    background-color: #fff;
    border-color: #bdbdbd;
}

/* Default buttons are the ones in the header */
.btn-default {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.btn-default:focus,
.btn-default:hover {
    color: #fff;
    background-color: #bdbdbd4d;
    border-color: #fff;
}

.info {
  background-color: #424242;
  color: #fff;
}

.embedded-image {
    border: 1px solid #dcedc8;
}

.embedded-image:hover,
.embedded-image:focus {
    border: 1px solid #9ccc65;
}

/* Bootstrap adjustions */
blockquote {
	border-left: 3px solid #bdbdbd;
}

/* Note box */
.note {
	border: 1px solid #dcedc8;
	border-left: 3px solid #9ccc65;
}