Skip to content

Commit

Permalink
Add border around table in content view
Browse files Browse the repository at this point in the history
  • Loading branch information
RadhiFadlillah committed Oct 4, 2019
1 parent 52bb4d9 commit bf974fa
Show file tree
Hide file tree
Showing 6 changed files with 1,264 additions and 1,253 deletions.
2 changes: 1 addition & 1 deletion internal/view/css/stylesheet.css

Large diffs are not rendered by default.

116 changes: 58 additions & 58 deletions internal/view/less/archive.less
Original file line number Diff line number Diff line change
@@ -1,73 +1,73 @@
:root {
--main : #F44336;
--border : #E5E5E5;
--colorLink : #999;
--archiveHeaderBg: rgba(255, 255, 255, 0.95);
--main : #F44336;
--border : #E5E5E5;
--colorLink : #999;
--archiveHeaderBg: rgba(255, 255, 255, 0.95);

@media (prefers-color-scheme: dark) {
--border : #191919;
--archiveHeaderBg: rgba(41, 41, 41, 0.95);
}
@media (prefers-color-scheme: dark) {
--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);
background-color: var(--archiveHeaderBg);
z-index : 9999999999;
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;

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

>*:not(:last-child) {
margin-right: 8px;
}
>*:not(:last-child) {
margin-right: 8px;
}

>.spacer {
flex: 1;
}
>.spacer {
flex: 1;
}

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

span {
margin-right: 8px;
}
}
span {
margin-right: 8px;
}
}

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

&:hover,
&:focus {
color: var(--main);
}
}
&:hover,
&:focus {
color: var(--main);
}
}

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

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

0 comments on commit bf974fa

Please sign in to comment.