Skip to content

Commit

Permalink
Use formatter in LESS files
Browse files Browse the repository at this point in the history
  • Loading branch information
RadhiFadlillah committed Sep 24, 2019
1 parent bccc70b commit c77b17c
Show file tree
Hide file tree
Showing 5 changed files with 490 additions and 490 deletions.
50 changes: 25 additions & 25 deletions internal/view/less/archive.less
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
:root {
--main: #F44336;
--border: #E5E5E5;
--colorLink: #999;
--main : #F44336;
--border : #E5E5E5;
--colorLink : #999;
--archiveHeaderBg: rgba(255, 255, 255, 0.95);

@media (prefers-color-scheme: dark) {
--border: #191919;
--border : #191919;
--archiveHeaderBg: rgba(41, 41, 41, 0.95);
}
}

#shiori-archive-header {
top: 0;
left: 0;
right: 0;
height: 60px;
position: fixed;
padding: 0 16px;
display: flex;
flex-flow: row wrap;
align-items: center;
font-size: 16px;
border-bottom: 1px solid var(--border);
top : 0;
left : 0;
right : 0;
height : 60px;
position : fixed;
padding : 0 16px;
display : flex;
flex-flow : row wrap;
align-items : center;
font-size : 16px;
border-bottom : 1px solid var(--border);
background-color: var(--archiveHeaderBg);
z-index: 9999999999;
z-index : 9999999999;

* {
border-width: 0;
box-sizing: border-box;
font-family: "Source Sans Pro", sans-serif;
margin: 0;
padding: 0;
box-sizing : border-box;
font-family : "Source Sans Pro", sans-serif;
margin : 0;
padding : 0;
}

>*:not(:last-child) {
Expand All @@ -42,18 +42,18 @@
}

#shiori-logo {
font-size: 2em;
font-size : 2em;
font-weight: 100;
color: var(--main);
color : var(--main);

span {
margin-right: 8px;
}
}

a {
display: block;
color: var(--colorLink);
display : block;
color : var(--colorLink);
text-decoration: underline;

&:hover,
Expand All @@ -64,7 +64,7 @@

@media (max-width: 600px) {
font-size: 14px;
height: 50px;
height : 50px;

#shiori-logo {
font-size: 1.5em;
Expand Down
Loading

0 comments on commit c77b17c

Please sign in to comment.