texture 0.2 → 0.3
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/_syntax.scss +1 -1
- data/_sass/theme.scss +12 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ae52850041c8a873d80d084b9d7652537ab9c18
|
|
4
|
+
data.tar.gz: 67c6c107a8feced7587f916a4abadff8036f38f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5eca12c248edef494f912157c70cf1def59dbbeb97ab7ffdda4461ac13b3dbee4501da07abfa58d79d75b3104fe213d16da7b186641ee6ad33b86b7338885fcd
|
|
7
|
+
data.tar.gz: 3ef0fb576189ad436f9286d88d7413bea759fb84857331d836c8daa8d76fdc86c69f4582972f27665521f711a03b10b01ea9eecfdbb89d6ad44d9ee6dc7c42bc
|
data/_sass/_syntax.scss
CHANGED
data/_sass/theme.scss
CHANGED
|
@@ -108,6 +108,9 @@ header {
|
|
|
108
108
|
div.highlighter-rouge {
|
|
109
109
|
right: 15px;
|
|
110
110
|
}
|
|
111
|
+
div.highlight {
|
|
112
|
+
padding: 30px 15px;
|
|
113
|
+
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
116
|
@media screen and (max-width: $tabWidth) and (min-width: $mobileWidth){
|
|
@@ -115,6 +118,9 @@ header {
|
|
|
115
118
|
div.highlighter-rouge {
|
|
116
119
|
right: 40px;
|
|
117
120
|
}
|
|
121
|
+
div.highlight {
|
|
122
|
+
padding: 30px 40px;
|
|
123
|
+
}
|
|
118
124
|
}
|
|
119
125
|
|
|
120
126
|
@media screen and (max-width: $desktopWidth) and (min-width: $tabWidth){
|
|
@@ -122,6 +128,9 @@ header {
|
|
|
122
128
|
div.highlighter-rouge {
|
|
123
129
|
right: 80px;
|
|
124
130
|
}
|
|
131
|
+
div.highlight {
|
|
132
|
+
padding: 30px 80px;
|
|
133
|
+
}
|
|
125
134
|
}
|
|
126
135
|
|
|
127
136
|
@media screen and (min-width: $desktopWidth) and (max-width: 1280px) {
|
|
@@ -129,6 +138,9 @@ header {
|
|
|
129
138
|
div.highlighter-rouge {
|
|
130
139
|
right: 100px;
|
|
131
140
|
}
|
|
141
|
+
div.highlight {
|
|
142
|
+
padding: 30px 100px;
|
|
143
|
+
}
|
|
132
144
|
}
|
|
133
145
|
}
|
|
134
146
|
|