mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-24 01:52:15 -05:00
95 lines
1.4 KiB
CSS
95 lines
1.4 KiB
CSS
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Roboto Regular'), local('Roboto-Regular'), url(../fonts/Roboto.woff) format('woff');
|
|
}
|
|
|
|
body {
|
|
margin: 10px;
|
|
font-family: 'Roboto',Verdana,Geneva,sans-serif;
|
|
font-size: 16px;
|
|
color: #000;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
nav ul li, ul.entry_options li {
|
|
display: inline-block;
|
|
}
|
|
|
|
a,
|
|
a:hover,
|
|
a:visited {
|
|
color: #000;
|
|
}
|
|
|
|
footer {
|
|
clear: both;
|
|
}
|
|
|
|
.reading-time {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.alert {
|
|
padding: 8px 35px 8px 14px;
|
|
margin-bottom: 20px;
|
|
color: #c09853;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
background-color: #fcf8e3;
|
|
border: 1px solid #fbeed5;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.alert h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
.alert .close {
|
|
position: relative;
|
|
top: -2px;
|
|
right: -21px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.alert-success {
|
|
color: #468847;
|
|
background-color: #dff0d8;
|
|
border-color: #d6e9c6;
|
|
}
|
|
|
|
.alert-danger,
|
|
.alert-error {
|
|
color: #b94a48;
|
|
background-color: #f2dede;
|
|
border-color: #eed3d7;
|
|
}
|
|
|
|
.alert-info {
|
|
color: #3a87ad;
|
|
background-color: #d9edf7;
|
|
border-color: #bce8f1;
|
|
}
|
|
|
|
.alert-block {
|
|
padding-top: 14px;
|
|
padding-bottom: 14px;
|
|
}
|
|
|
|
.alert-block > p,
|
|
.alert-block > ul {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.alert-block p + p {
|
|
margin-top: 5px;
|
|
} |