Skip to content

Commit 5fbba94

Browse files
author
Danezis
committed
update css
1 parent 6678634 commit 5fbba94

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

themes/10ko/assets/scss/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ a.button */{
4545
}*/
4646

4747
&.link {
48-
background: none;
48+
background: 0 0;
4949
font-size: 1rem;
5050
}
5151

themes/10ko/assets/scss/_ico.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
}
99

1010
.icoTag{
11-
background-position: -12px 0px;
11+
background-position: -12px 0;
1212
}
1313
.icoWor{
14-
background-position: 0px -12px;
14+
background-position: 0 -12px;
1515
}
1616
.icoDat{
1717
background-position: -12px -12px;
@@ -22,7 +22,7 @@
2222
height: 18px;
2323
}
2424
.icoMen{
25-
background-position: 24px -0px;
25+
background-position: 24px 0;
2626
width: 24px;
2727
height: 24px;
2828
}

themes/10ko/assets/scss/_logo.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
animation: cursor 1s infinite;
2929
}
3030

31-
@media (prefers-reduced-motion: reduce) {
31+
@media (prefers-reduced-motion:reduce) {
3232
&__cursor {
3333
animation: none;
3434
}

themes/10ko/assets/scss/_main.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ a {
8787
img {
8888
display: block;
8989
max-width: 100%;
90-
margin: 0px auto;
90+
margin: 0 auto;
9191
/*
9292
&.left {
9393
margin-right: auto;
@@ -168,7 +168,7 @@ figure {
168168
}
169169
*/
170170
em, i, strong {
171-
color: white;
171+
color:#fff;
172172
}
173173

174174
code {
@@ -179,14 +179,14 @@ code {
179179
padding: 1px 6px;
180180
margin: 0 2px;
181181
border-radius: 5px;
182-
font-size: 0.95rem;
182+
font-size: .95rem;
183183
}
184184

185185
pre {
186186
background: #212020;
187187
padding: 10px 10px 10px 20px;
188188
border-radius: 8px;
189-
font-size: 0.95rem;
189+
font-size: .95rem;
190190
overflow: auto;
191191

192192
@media #{$media-size-phone} {

themes/10ko/assets/scss/_normalize.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ sub {
154154
}
155155

156156
sup {
157-
top: -0.5em;
157+
top: -.5em;
158158
}
159159

160160
/* Embedded content

themes/10ko/assets/scss/_prism.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ pre[class*="language-"].line-numbers > code {
308308
content: counter(linenumber);
309309
color: #999;
310310
display: block;
311-
padding-right: 0.8em;
311+
padding-right: .8em;
312312
text-align: right;
313313
}
314314

themes/10ko/assets/scss/_sharing-buttons.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
.resp-sharing-button__link {
1212
text-decoration: none;
13-
margin: 0.5em;
13+
margin: .5em;
1414
}
1515

1616
.resp-sharing-button {
1717
border-radius: 5px;
1818
transition: 25ms ease-out;
19-
padding: 0.5em 0.75em;
19+
padding: .5em 0.75em;
2020
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
2121
}
2222

themes/10ko/assets/scss/_single.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@
6464
@include dimmed;
6565

6666
p {
67-
margin: 0.8em 0;
67+
margin: .8em 0;
6868
}
6969

7070
a:hover {
71-
border-bottom: 1px solid white;
71+
border-bottom: 1px solid #fff;
7272
}
7373

7474
svg {
75-
margin-right: 0.8em;
75+
margin-right: .8em;
7676
}
7777

7878
.tag {
79-
margin-right: 0.5em;
79+
margin-right: .5em;
8080

8181
&::before {
8282
content: "#";

themes/10ko/assets/scss/_variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ $dark-color-secondary: #b3b3bd;
99
$dark-border-color: #4e4e57;
1010
$dark-table-color: #4e4e57;
1111

12-
$media-size-phone: "(max-width: 684px)";
13-
$media-size-tablet: "(max-width: 900px)";
12+
$media-size-phone: "(max-width:684px)";
13+
$media-size-tablet: "(max-width:900px)";
1414

1515
/* Variables for js, must be the same as these in @custom-media queries */
1616
:root {
17-
--phoneWidth: (max-width: 684px);
18-
--tabletWidth: (max-width: 900px);
17+
--phoneWidth: (max-width:684px);
18+
--tabletWidth: (max-width:900px);
1919
}
2020

2121
/* Content */

0 commit comments

Comments
 (0)