jekyll-theme-minimalistic 0.2.0 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +674 -674
- data/README.md +176 -172
- data/_includes/footer.html +6 -4
- data/_includes/head-custom-google-analytics.html +10 -10
- data/_includes/head-custom.html +12 -12
- data/_includes/sidebar.html +56 -56
- data/_layouts/default.html +63 -62
- data/_layouts/post.html +14 -14
- data/_sass/colors.scss +126 -124
- data/_sass/fonts.scss +55 -55
- data/_sass/jekyll-theme-minimalistic.scss +315 -314
- data/_sass/minimalistic.scss +4 -4
- data/_sass/rouge-github.scss +206 -206
- data/assets/css/colors-auto.scss +25 -25
- data/assets/css/colors-dark.scss +14 -14
- data/assets/css/colors-light.scss +8 -8
- data/assets/css/style.scss +69 -69
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot +0 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg +336 -336
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf +0 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff +0 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg +334 -334
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg +337 -337
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg +335 -335
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 +0 -0
- data/assets/img/logo.jpg +0 -0
- data/assets/js/scale.fix.js +27 -27
- metadata +33 -5
data/_sass/rouge-github.scss
CHANGED
@@ -1,206 +1,206 @@
|
|
1
|
-
.highlight table td { padding: 5px; }
|
2
|
-
.highlight table pre { margin: 0; }
|
3
|
-
.highlight .cm {
|
4
|
-
color: #999988;
|
5
|
-
font-style: italic;
|
6
|
-
}
|
7
|
-
.highlight .cp {
|
8
|
-
color: #999999;
|
9
|
-
font-weight: bold;
|
10
|
-
}
|
11
|
-
.highlight .c1 {
|
12
|
-
color: #999988;
|
13
|
-
font-style: italic;
|
14
|
-
}
|
15
|
-
.highlight .cs {
|
16
|
-
color: #999999;
|
17
|
-
font-weight: bold;
|
18
|
-
font-style: italic;
|
19
|
-
}
|
20
|
-
.highlight .c, .highlight .cd {
|
21
|
-
color: #999988;
|
22
|
-
font-style: italic;
|
23
|
-
}
|
24
|
-
.highlight .err {
|
25
|
-
color: #a61717;
|
26
|
-
background-color: #e3d2d2;
|
27
|
-
}
|
28
|
-
.highlight .gd {
|
29
|
-
color: #000000;
|
30
|
-
background-color: #ffdddd;
|
31
|
-
}
|
32
|
-
.highlight .ge {
|
33
|
-
color: #000000;
|
34
|
-
font-style: italic;
|
35
|
-
}
|
36
|
-
.highlight .gr {
|
37
|
-
color: #aa0000;
|
38
|
-
}
|
39
|
-
.highlight .gh {
|
40
|
-
color: #999999;
|
41
|
-
}
|
42
|
-
.highlight .gi {
|
43
|
-
color: #000000;
|
44
|
-
background-color: #ddffdd;
|
45
|
-
}
|
46
|
-
.highlight .go {
|
47
|
-
color: #888888;
|
48
|
-
}
|
49
|
-
.highlight .gp {
|
50
|
-
color: #555555;
|
51
|
-
}
|
52
|
-
.highlight .gs {
|
53
|
-
font-weight: bold;
|
54
|
-
}
|
55
|
-
.highlight .gu {
|
56
|
-
color: #aaaaaa;
|
57
|
-
}
|
58
|
-
.highlight .gt {
|
59
|
-
color: #aa0000;
|
60
|
-
}
|
61
|
-
.highlight .kc {
|
62
|
-
color: #000000;
|
63
|
-
font-weight: bold;
|
64
|
-
}
|
65
|
-
.highlight .kd {
|
66
|
-
color: #000000;
|
67
|
-
font-weight: bold;
|
68
|
-
}
|
69
|
-
.highlight .kn {
|
70
|
-
color: #000000;
|
71
|
-
font-weight: bold;
|
72
|
-
}
|
73
|
-
.highlight .kp {
|
74
|
-
color: #000000;
|
75
|
-
font-weight: bold;
|
76
|
-
}
|
77
|
-
.highlight .kr {
|
78
|
-
color: #000000;
|
79
|
-
font-weight: bold;
|
80
|
-
}
|
81
|
-
.highlight .kt {
|
82
|
-
color: #445588;
|
83
|
-
font-weight: bold;
|
84
|
-
}
|
85
|
-
.highlight .k, .highlight .kv {
|
86
|
-
color: #000000;
|
87
|
-
font-weight: bold;
|
88
|
-
}
|
89
|
-
.highlight .mf {
|
90
|
-
color: #009999;
|
91
|
-
}
|
92
|
-
.highlight .mh {
|
93
|
-
color: #009999;
|
94
|
-
}
|
95
|
-
.highlight .il {
|
96
|
-
color: #009999;
|
97
|
-
}
|
98
|
-
.highlight .mi {
|
99
|
-
color: #009999;
|
100
|
-
}
|
101
|
-
.highlight .mo {
|
102
|
-
color: #009999;
|
103
|
-
}
|
104
|
-
.highlight .m, .highlight .mb, .highlight .mx {
|
105
|
-
color: #009999;
|
106
|
-
}
|
107
|
-
.highlight .sb {
|
108
|
-
color: #d14;
|
109
|
-
}
|
110
|
-
.highlight .sc {
|
111
|
-
color: #d14;
|
112
|
-
}
|
113
|
-
.highlight .sd {
|
114
|
-
color: #d14;
|
115
|
-
}
|
116
|
-
.highlight .s2 {
|
117
|
-
color: #d14;
|
118
|
-
}
|
119
|
-
.highlight .se {
|
120
|
-
color: #d14;
|
121
|
-
}
|
122
|
-
.highlight .sh {
|
123
|
-
color: #d14;
|
124
|
-
}
|
125
|
-
.highlight .si {
|
126
|
-
color: #d14;
|
127
|
-
}
|
128
|
-
.highlight .sx {
|
129
|
-
color: #d14;
|
130
|
-
}
|
131
|
-
.highlight .sr {
|
132
|
-
color: #009926;
|
133
|
-
}
|
134
|
-
.highlight .s1 {
|
135
|
-
color: #d14;
|
136
|
-
}
|
137
|
-
.highlight .ss {
|
138
|
-
color: #990073;
|
139
|
-
}
|
140
|
-
.highlight .s {
|
141
|
-
color: #d14;
|
142
|
-
}
|
143
|
-
.highlight .na {
|
144
|
-
color: #008080;
|
145
|
-
}
|
146
|
-
.highlight .bp {
|
147
|
-
color: #999999;
|
148
|
-
}
|
149
|
-
.highlight .nb {
|
150
|
-
color: #0086B3;
|
151
|
-
}
|
152
|
-
.highlight .nc {
|
153
|
-
color: #445588;
|
154
|
-
font-weight: bold;
|
155
|
-
}
|
156
|
-
.highlight .no {
|
157
|
-
color: #008080;
|
158
|
-
}
|
159
|
-
.highlight .nd {
|
160
|
-
color: #3c5d5d;
|
161
|
-
font-weight: bold;
|
162
|
-
}
|
163
|
-
.highlight .ni {
|
164
|
-
color: #800080;
|
165
|
-
}
|
166
|
-
.highlight .ne {
|
167
|
-
color: #990000;
|
168
|
-
font-weight: bold;
|
169
|
-
}
|
170
|
-
.highlight .nf {
|
171
|
-
color: #990000;
|
172
|
-
font-weight: bold;
|
173
|
-
}
|
174
|
-
.highlight .nl {
|
175
|
-
color: #990000;
|
176
|
-
font-weight: bold;
|
177
|
-
}
|
178
|
-
.highlight .nn {
|
179
|
-
color: #555555;
|
180
|
-
}
|
181
|
-
.highlight .nt {
|
182
|
-
color: #4d4dc0;
|
183
|
-
}
|
184
|
-
.highlight .vc {
|
185
|
-
color: #008080;
|
186
|
-
}
|
187
|
-
.highlight .vg {
|
188
|
-
color: #008080;
|
189
|
-
}
|
190
|
-
.highlight .vi {
|
191
|
-
color: #008080;
|
192
|
-
}
|
193
|
-
.highlight .nv {
|
194
|
-
color: #008080;
|
195
|
-
}
|
196
|
-
.highlight .ow {
|
197
|
-
color: #000000;
|
198
|
-
font-weight: bold;
|
199
|
-
}
|
200
|
-
.highlight .o {
|
201
|
-
color: #000000;
|
202
|
-
font-weight: bold;
|
203
|
-
}
|
204
|
-
.highlight .w {
|
205
|
-
color: #bbbbbb;
|
206
|
-
}
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight .cm {
|
4
|
+
color: #999988;
|
5
|
+
font-style: italic;
|
6
|
+
}
|
7
|
+
.highlight .cp {
|
8
|
+
color: #999999;
|
9
|
+
font-weight: bold;
|
10
|
+
}
|
11
|
+
.highlight .c1 {
|
12
|
+
color: #999988;
|
13
|
+
font-style: italic;
|
14
|
+
}
|
15
|
+
.highlight .cs {
|
16
|
+
color: #999999;
|
17
|
+
font-weight: bold;
|
18
|
+
font-style: italic;
|
19
|
+
}
|
20
|
+
.highlight .c, .highlight .cd {
|
21
|
+
color: #999988;
|
22
|
+
font-style: italic;
|
23
|
+
}
|
24
|
+
.highlight .err {
|
25
|
+
color: #a61717;
|
26
|
+
background-color: #e3d2d2;
|
27
|
+
}
|
28
|
+
.highlight .gd {
|
29
|
+
color: #000000;
|
30
|
+
background-color: #ffdddd;
|
31
|
+
}
|
32
|
+
.highlight .ge {
|
33
|
+
color: #000000;
|
34
|
+
font-style: italic;
|
35
|
+
}
|
36
|
+
.highlight .gr {
|
37
|
+
color: #aa0000;
|
38
|
+
}
|
39
|
+
.highlight .gh {
|
40
|
+
color: #999999;
|
41
|
+
}
|
42
|
+
.highlight .gi {
|
43
|
+
color: #000000;
|
44
|
+
background-color: #ddffdd;
|
45
|
+
}
|
46
|
+
.highlight .go {
|
47
|
+
color: #888888;
|
48
|
+
}
|
49
|
+
.highlight .gp {
|
50
|
+
color: #555555;
|
51
|
+
}
|
52
|
+
.highlight .gs {
|
53
|
+
font-weight: bold;
|
54
|
+
}
|
55
|
+
.highlight .gu {
|
56
|
+
color: #aaaaaa;
|
57
|
+
}
|
58
|
+
.highlight .gt {
|
59
|
+
color: #aa0000;
|
60
|
+
}
|
61
|
+
.highlight .kc {
|
62
|
+
color: #000000;
|
63
|
+
font-weight: bold;
|
64
|
+
}
|
65
|
+
.highlight .kd {
|
66
|
+
color: #000000;
|
67
|
+
font-weight: bold;
|
68
|
+
}
|
69
|
+
.highlight .kn {
|
70
|
+
color: #000000;
|
71
|
+
font-weight: bold;
|
72
|
+
}
|
73
|
+
.highlight .kp {
|
74
|
+
color: #000000;
|
75
|
+
font-weight: bold;
|
76
|
+
}
|
77
|
+
.highlight .kr {
|
78
|
+
color: #000000;
|
79
|
+
font-weight: bold;
|
80
|
+
}
|
81
|
+
.highlight .kt {
|
82
|
+
color: #445588;
|
83
|
+
font-weight: bold;
|
84
|
+
}
|
85
|
+
.highlight .k, .highlight .kv {
|
86
|
+
color: #000000;
|
87
|
+
font-weight: bold;
|
88
|
+
}
|
89
|
+
.highlight .mf {
|
90
|
+
color: #009999;
|
91
|
+
}
|
92
|
+
.highlight .mh {
|
93
|
+
color: #009999;
|
94
|
+
}
|
95
|
+
.highlight .il {
|
96
|
+
color: #009999;
|
97
|
+
}
|
98
|
+
.highlight .mi {
|
99
|
+
color: #009999;
|
100
|
+
}
|
101
|
+
.highlight .mo {
|
102
|
+
color: #009999;
|
103
|
+
}
|
104
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
105
|
+
color: #009999;
|
106
|
+
}
|
107
|
+
.highlight .sb {
|
108
|
+
color: #d14;
|
109
|
+
}
|
110
|
+
.highlight .sc {
|
111
|
+
color: #d14;
|
112
|
+
}
|
113
|
+
.highlight .sd {
|
114
|
+
color: #d14;
|
115
|
+
}
|
116
|
+
.highlight .s2 {
|
117
|
+
color: #d14;
|
118
|
+
}
|
119
|
+
.highlight .se {
|
120
|
+
color: #d14;
|
121
|
+
}
|
122
|
+
.highlight .sh {
|
123
|
+
color: #d14;
|
124
|
+
}
|
125
|
+
.highlight .si {
|
126
|
+
color: #d14;
|
127
|
+
}
|
128
|
+
.highlight .sx {
|
129
|
+
color: #d14;
|
130
|
+
}
|
131
|
+
.highlight .sr {
|
132
|
+
color: #009926;
|
133
|
+
}
|
134
|
+
.highlight .s1 {
|
135
|
+
color: #d14;
|
136
|
+
}
|
137
|
+
.highlight .ss {
|
138
|
+
color: #990073;
|
139
|
+
}
|
140
|
+
.highlight .s {
|
141
|
+
color: #d14;
|
142
|
+
}
|
143
|
+
.highlight .na {
|
144
|
+
color: #008080;
|
145
|
+
}
|
146
|
+
.highlight .bp {
|
147
|
+
color: #999999;
|
148
|
+
}
|
149
|
+
.highlight .nb {
|
150
|
+
color: #0086B3;
|
151
|
+
}
|
152
|
+
.highlight .nc {
|
153
|
+
color: #445588;
|
154
|
+
font-weight: bold;
|
155
|
+
}
|
156
|
+
.highlight .no {
|
157
|
+
color: #008080;
|
158
|
+
}
|
159
|
+
.highlight .nd {
|
160
|
+
color: #3c5d5d;
|
161
|
+
font-weight: bold;
|
162
|
+
}
|
163
|
+
.highlight .ni {
|
164
|
+
color: #800080;
|
165
|
+
}
|
166
|
+
.highlight .ne {
|
167
|
+
color: #990000;
|
168
|
+
font-weight: bold;
|
169
|
+
}
|
170
|
+
.highlight .nf {
|
171
|
+
color: #990000;
|
172
|
+
font-weight: bold;
|
173
|
+
}
|
174
|
+
.highlight .nl {
|
175
|
+
color: #990000;
|
176
|
+
font-weight: bold;
|
177
|
+
}
|
178
|
+
.highlight .nn {
|
179
|
+
color: #555555;
|
180
|
+
}
|
181
|
+
.highlight .nt {
|
182
|
+
color: #4d4dc0;
|
183
|
+
}
|
184
|
+
.highlight .vc {
|
185
|
+
color: #008080;
|
186
|
+
}
|
187
|
+
.highlight .vg {
|
188
|
+
color: #008080;
|
189
|
+
}
|
190
|
+
.highlight .vi {
|
191
|
+
color: #008080;
|
192
|
+
}
|
193
|
+
.highlight .nv {
|
194
|
+
color: #008080;
|
195
|
+
}
|
196
|
+
.highlight .ow {
|
197
|
+
color: #000000;
|
198
|
+
font-weight: bold;
|
199
|
+
}
|
200
|
+
.highlight .o {
|
201
|
+
color: #000000;
|
202
|
+
font-weight: bold;
|
203
|
+
}
|
204
|
+
.highlight .w {
|
205
|
+
color: #bbbbbb;
|
206
|
+
}
|
data/assets/css/colors-auto.scss
CHANGED
@@ -1,25 +1,25 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
@import "colors";
|
5
|
-
|
6
|
-
// this mode is like colors-auto but if the device does not support
|
7
|
-
// @media prefers-color-scheme it will default to light mode
|
8
|
-
:root {
|
9
|
-
@include colors;
|
10
|
-
@include light-colors;
|
11
|
-
}
|
12
|
-
|
13
|
-
@media screen and (prefers-color-scheme: dark) {
|
14
|
-
:root{
|
15
|
-
@include dark-colors;
|
16
|
-
}
|
17
|
-
}
|
18
|
-
|
19
|
-
@media print, (prefers-color-scheme: light) {
|
20
|
-
//we would not like to apply dark mode if content is on printer
|
21
|
-
// as that would use a lot of ink
|
22
|
-
:root {
|
23
|
-
@include light-colors;
|
24
|
-
}
|
25
|
-
}
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
@import "colors";
|
5
|
+
|
6
|
+
// this mode is like colors-auto but if the device does not support
|
7
|
+
// @media prefers-color-scheme it will default to light mode
|
8
|
+
:root {
|
9
|
+
@include colors;
|
10
|
+
@include light-colors;
|
11
|
+
}
|
12
|
+
|
13
|
+
@media screen and (prefers-color-scheme: dark) {
|
14
|
+
:root{
|
15
|
+
@include dark-colors;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
@media print, (prefers-color-scheme: light) {
|
20
|
+
//we would not like to apply dark mode if content is on printer
|
21
|
+
// as that would use a lot of ink
|
22
|
+
:root {
|
23
|
+
@include light-colors;
|
24
|
+
}
|
25
|
+
}
|
data/assets/css/colors-dark.scss
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
@import "colors";
|
5
|
-
|
6
|
-
:root {
|
7
|
-
@include colors;
|
8
|
-
@include dark-colors;
|
9
|
-
}
|
10
|
-
|
11
|
-
@media print {
|
12
|
-
:root {
|
13
|
-
@include light-colors;
|
14
|
-
}
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
@import "colors";
|
5
|
+
|
6
|
+
:root {
|
7
|
+
@include colors;
|
8
|
+
@include dark-colors;
|
9
|
+
}
|
10
|
+
|
11
|
+
@media print {
|
12
|
+
:root {
|
13
|
+
@include light-colors;
|
14
|
+
}
|
15
15
|
}
|
@@ -1,9 +1,9 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
@import "colors";
|
5
|
-
|
6
|
-
:root {
|
7
|
-
@include colors;
|
8
|
-
@include light-colors;
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
@import "colors";
|
5
|
+
|
6
|
+
:root {
|
7
|
+
@include colors;
|
8
|
+
@include light-colors;
|
9
9
|
}
|
data/assets/css/style.scss
CHANGED
@@ -1,69 +1,69 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
@import "jekyll-theme-minimalistic";
|
5
|
-
|
6
|
-
.logo {
|
7
|
-
-webkit-border-radius: 8px;
|
8
|
-
-moz-border-radius: 8px;
|
9
|
-
border-radius: 8px;
|
10
|
-
margin-bottom: 10px;
|
11
|
-
}
|
12
|
-
|
13
|
-
.overlay {
|
14
|
-
position: fixed;
|
15
|
-
top: 0;
|
16
|
-
bottom: 0;
|
17
|
-
left: 0;
|
18
|
-
right: 0;
|
19
|
-
background: rgba(0, 0, 0, 0.7);
|
20
|
-
transition: opacity 500ms;
|
21
|
-
visibility: hidden;
|
22
|
-
opacity: 0;
|
23
|
-
}
|
24
|
-
|
25
|
-
.overlay:target {
|
26
|
-
visibility: visible;
|
27
|
-
opacity: 1;
|
28
|
-
}
|
29
|
-
|
30
|
-
.popup {
|
31
|
-
margin: 70px auto;
|
32
|
-
padding: 20px;
|
33
|
-
background: #fff;
|
34
|
-
border-radius: 5px;
|
35
|
-
width: 30%;
|
36
|
-
position: relative;
|
37
|
-
transition: all 1s ease-in-out;
|
38
|
-
}
|
39
|
-
|
40
|
-
.popup .close {
|
41
|
-
position: absolute;
|
42
|
-
top: 10px;
|
43
|
-
right: 10px;
|
44
|
-
transition: all 200ms;
|
45
|
-
font-size: 30px;
|
46
|
-
font-weight: bold;
|
47
|
-
text-decoration: none;
|
48
|
-
color: #333;
|
49
|
-
}
|
50
|
-
|
51
|
-
.popup .close:hover {
|
52
|
-
color: #06D85F;
|
53
|
-
}
|
54
|
-
|
55
|
-
.popup .content {
|
56
|
-
padding-right: 20px;
|
57
|
-
max-height: 30%;
|
58
|
-
overflow: auto;
|
59
|
-
font: 15px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
60
|
-
}
|
61
|
-
|
62
|
-
@media screen and (max-width: 700px){
|
63
|
-
.box {
|
64
|
-
width: 70%;
|
65
|
-
}
|
66
|
-
.popup {
|
67
|
-
width: 70%;
|
68
|
-
}
|
69
|
-
}
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
@import "jekyll-theme-minimalistic";
|
5
|
+
|
6
|
+
.logo {
|
7
|
+
-webkit-border-radius: 8px;
|
8
|
+
-moz-border-radius: 8px;
|
9
|
+
border-radius: 8px;
|
10
|
+
margin-bottom: 10px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.overlay {
|
14
|
+
position: fixed;
|
15
|
+
top: 0;
|
16
|
+
bottom: 0;
|
17
|
+
left: 0;
|
18
|
+
right: 0;
|
19
|
+
background: rgba(0, 0, 0, 0.7);
|
20
|
+
transition: opacity 500ms;
|
21
|
+
visibility: hidden;
|
22
|
+
opacity: 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
.overlay:target {
|
26
|
+
visibility: visible;
|
27
|
+
opacity: 1;
|
28
|
+
}
|
29
|
+
|
30
|
+
.popup {
|
31
|
+
margin: 70px auto;
|
32
|
+
padding: 20px;
|
33
|
+
background: #fff;
|
34
|
+
border-radius: 5px;
|
35
|
+
width: 30%;
|
36
|
+
position: relative;
|
37
|
+
transition: all 1s ease-in-out;
|
38
|
+
}
|
39
|
+
|
40
|
+
.popup .close {
|
41
|
+
position: absolute;
|
42
|
+
top: 10px;
|
43
|
+
right: 10px;
|
44
|
+
transition: all 200ms;
|
45
|
+
font-size: 30px;
|
46
|
+
font-weight: bold;
|
47
|
+
text-decoration: none;
|
48
|
+
color: #333;
|
49
|
+
}
|
50
|
+
|
51
|
+
.popup .close:hover {
|
52
|
+
color: #06D85F;
|
53
|
+
}
|
54
|
+
|
55
|
+
.popup .content {
|
56
|
+
padding-right: 20px;
|
57
|
+
max-height: 30%;
|
58
|
+
overflow: auto;
|
59
|
+
font: 15px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
60
|
+
}
|
61
|
+
|
62
|
+
@media screen and (max-width: 700px){
|
63
|
+
.box {
|
64
|
+
width: 70%;
|
65
|
+
}
|
66
|
+
.popup {
|
67
|
+
width: 70%;
|
68
|
+
}
|
69
|
+
}
|
File without changes
|