daydream-theme 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_sass/daydream/_sidebar.scss +150 -76
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2df204664f3d32760f76e9477d1bc29f45d102e62e15de814b705efa14fb62b8
|
|
4
|
+
data.tar.gz: f8133e20eb82421ae695ca7b42684cfa6528767780461bf422a3b29bbc1a996e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08c369b4f7181b2ca3c5567363fd9dc86fb893421e24d311b5b136abe6597aac3b2d11e87ac6f651eb580b1366a279b6c91606340e1e5e5213eaf9fb20452738'
|
|
7
|
+
data.tar.gz: da7e6d7f855713e0ae125c7ec074a1412d28e2c401b2cde312d050d416b1b960886999aaa42eec0eb56ac9a5c9ad923cac9099265644143a0edb32205e6cb9f2
|
|
@@ -1,105 +1,179 @@
|
|
|
1
|
-
.sidebar {
|
|
2
|
-
width: 15%;
|
|
3
|
-
color: var(--sidebar-color);
|
|
4
|
-
background: center / cover;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.sidebar-shield {
|
|
8
|
-
width: 100%;
|
|
9
|
-
height: 100%;
|
|
10
|
-
background-color: rgba(0,0,0,0.1);
|
|
11
|
-
}
|
|
12
1
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
@media only screen and (min-width: 992px) {
|
|
3
|
+
.sidebar {
|
|
4
|
+
width: 15%;
|
|
5
|
+
color: var(--sidebar-color);
|
|
6
|
+
background: center / cover;
|
|
7
|
+
outline: 2px red solid;
|
|
8
|
+
}
|
|
18
9
|
|
|
19
|
-
|
|
20
|
-
|
|
10
|
+
.sidebar-shield {
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
background-color: rgba(0,0,0,0.1);
|
|
21
14
|
}
|
|
22
|
-
}
|
|
23
15
|
|
|
24
|
-
.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
letter-spacing: -1px;
|
|
30
|
-
word-wrap: break-word;
|
|
31
|
-
}
|
|
16
|
+
.header {
|
|
17
|
+
width: 100%;
|
|
18
|
+
text-align: center;
|
|
19
|
+
text-shadow: 1px 1px 3px var(--oc-black);
|
|
20
|
+
padding: 2em;
|
|
32
21
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
margin-top: 0;
|
|
38
|
-
}
|
|
22
|
+
a {
|
|
23
|
+
color: var(--oc-white);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
39
26
|
|
|
40
|
-
.
|
|
41
|
-
|
|
42
|
-
|
|
27
|
+
.brand-title {
|
|
28
|
+
font-family: var(--brand-title-font);
|
|
29
|
+
font-size: 2.5em;
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
line-height: 1.2;
|
|
32
|
+
letter-spacing: -1px;
|
|
33
|
+
word-wrap: break-word;
|
|
34
|
+
}
|
|
43
35
|
|
|
44
|
-
.
|
|
45
|
-
|
|
46
|
-
|
|
36
|
+
.brand-tagline {
|
|
37
|
+
font-size: 1.25em;
|
|
38
|
+
line-height: 1.2;
|
|
39
|
+
letter-spacing: -1px;
|
|
40
|
+
margin-top: 0;
|
|
47
41
|
}
|
|
48
42
|
|
|
49
|
-
.
|
|
50
|
-
|
|
43
|
+
.nav {
|
|
44
|
+
margin: 1em 0;
|
|
51
45
|
}
|
|
52
|
-
}
|
|
53
46
|
|
|
54
|
-
.
|
|
55
|
-
|
|
56
|
-
|
|
47
|
+
.nav-item {
|
|
48
|
+
a:hover {
|
|
49
|
+
background-color: transparent;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.current {
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
57
56
|
|
|
58
|
-
.social-
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
.social-list {
|
|
58
|
+
white-space: normal;
|
|
59
|
+
}
|
|
61
60
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
color: var(--link-color);
|
|
61
|
+
.social-item {
|
|
62
|
+
a {
|
|
65
63
|
background-color: transparent;
|
|
66
|
-
|
|
64
|
+
|
|
65
|
+
&:focus,
|
|
66
|
+
&:hover {
|
|
67
|
+
color: var(--link-color);
|
|
68
|
+
background-color: transparent;
|
|
69
|
+
background-image: none;
|
|
70
|
+
}
|
|
67
71
|
}
|
|
68
72
|
}
|
|
69
|
-
}
|
|
70
73
|
|
|
71
|
-
.image-cropper {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
74
|
+
.image-cropper {
|
|
75
|
+
width: 100px;
|
|
76
|
+
height: 100px;
|
|
77
|
+
position: relative;
|
|
78
|
+
left: 2em;
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
border-radius: 40%;
|
|
81
|
+
margin: 1em;
|
|
82
|
+
outline: 2px red solid;
|
|
83
|
+
}
|
|
80
84
|
|
|
81
|
-
img {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
85
|
+
img {
|
|
86
|
+
display: inline;
|
|
87
|
+
margin: 0 auto;
|
|
88
|
+
height: 100%;
|
|
89
|
+
width: auto;
|
|
90
|
+
}
|
|
86
91
|
}
|
|
92
|
+
@media only screen and (max-width: 992px) {
|
|
93
|
+
.sidebar {
|
|
94
|
+
width: 100%;
|
|
95
|
+
height: 15%;
|
|
96
|
+
color: var(--sidebar-color);
|
|
97
|
+
background: center / cover;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.sidebar-shield {
|
|
101
|
+
width: 100%;
|
|
102
|
+
height: 100%;
|
|
103
|
+
background-color: rgba(0,0,0,0.1);
|
|
104
|
+
}
|
|
87
105
|
|
|
88
|
-
@media (min-width: $md-screen) {
|
|
89
106
|
.header {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
107
|
+
width: 100%;
|
|
108
|
+
text-align: center;
|
|
109
|
+
text-shadow: 1px 1px 3px var(--oc-black);
|
|
110
|
+
padding: 2em;
|
|
111
|
+
|
|
112
|
+
a {
|
|
113
|
+
color: var(--oc-white);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.brand-title {
|
|
118
|
+
font-family: var(--brand-title-font);
|
|
119
|
+
font-size: 2.5em;
|
|
120
|
+
font-weight: bold;
|
|
121
|
+
line-height: 1.2;
|
|
122
|
+
letter-spacing: -1px;
|
|
123
|
+
word-wrap: break-word;
|
|
94
124
|
}
|
|
95
125
|
|
|
96
|
-
.
|
|
97
|
-
|
|
126
|
+
.brand-tagline {
|
|
127
|
+
font-size: 1.25em;
|
|
128
|
+
line-height: 1.2;
|
|
129
|
+
letter-spacing: -1px;
|
|
130
|
+
margin-top: 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.nav {
|
|
134
|
+
margin: 1em 0;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.nav-item {
|
|
138
|
+
a:hover {
|
|
139
|
+
background-color: transparent;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.current {
|
|
143
|
+
font-weight: bold;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.social-list {
|
|
148
|
+
white-space: normal;
|
|
98
149
|
}
|
|
99
150
|
|
|
100
151
|
.social-item {
|
|
101
152
|
a {
|
|
102
|
-
|
|
153
|
+
background-color: transparent;
|
|
154
|
+
|
|
155
|
+
&:focus,
|
|
156
|
+
&:hover {
|
|
157
|
+
color: var(--link-color);
|
|
158
|
+
background-color: transparent;
|
|
159
|
+
background-image: none;
|
|
160
|
+
}
|
|
103
161
|
}
|
|
104
162
|
}
|
|
105
|
-
|
|
163
|
+
|
|
164
|
+
.image-cropper {
|
|
165
|
+
width: 100px;
|
|
166
|
+
height: 100px;
|
|
167
|
+
position: relative;
|
|
168
|
+
left: 31%;
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
border-radius: 40%;
|
|
171
|
+
margin: 1em;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
img {
|
|
175
|
+
display: inline;
|
|
176
|
+
margin: 0 auto;
|
|
177
|
+
height: 100%;
|
|
178
|
+
width: auto;
|
|
179
|
+
}}
|