2014-02-12 15:58:40 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
Sommaire
|
|
|
|
|
|
|
|
1 = Style Guide
|
|
|
|
2 = Layout
|
|
|
|
3 = Pictos
|
|
|
|
4 = Messages
|
|
|
|
5 = Article
|
|
|
|
6 = Media queries
|
|
|
|
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
html {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: #EEE;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login {
|
|
|
|
background: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login #main {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login form {
|
|
|
|
background: #FFF;
|
|
|
|
padding: 1.5em;
|
|
|
|
box-shadow: 0 1px 8px rgba(0,0,0,0.9);
|
|
|
|
width: 20em;
|
|
|
|
position: absolute;
|
|
|
|
top: 8em;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login .logo {
|
|
|
|
position: absolute;
|
|
|
|
top: 2em;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -55px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
1 = Style Guide
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
color: #FFF;
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.desktopHide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 20;
|
|
|
|
top: 0.4em;
|
|
|
|
left: 0.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2, h3, h4 {
|
|
|
|
font-family: 'PT Sans', sans-serif;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
p, li {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #000;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover, a:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
form fieldset {
|
|
|
|
border:0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2014-07-25 02:42:03 -04:00
|
|
|
form input[type="text"], select, form input[type="password"], form input[type="url"], form input[type="email"] {
|
2014-02-12 15:58:40 -05:00
|
|
|
border: 1px solid #999;
|
|
|
|
padding: 0.5em 1em;
|
2014-10-27 09:00:47 -04:00
|
|
|
margin-left: 5px;
|
2014-02-12 15:58:40 -05:00
|
|
|
min-width: 12em;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (-webkit-min-device-pixel-ratio:0){
|
|
|
|
select{
|
|
|
|
-webkit-appearance: none;
|
|
|
|
border-radius: 0;
|
|
|
|
background: #FFF url(../img/bg-select.png) no-repeat right center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset label {
|
|
|
|
min-width: 12.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline .row {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline label {
|
|
|
|
min-width: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset label {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
form .row {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
form button, input[type="submit"] {
|
|
|
|
cursor:pointer;
|
|
|
|
background: #000;
|
|
|
|
color: #FFF;
|
|
|
|
border:0;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
display: inline-block;
|
|
|
|
border:1px solid #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
form button:hover, form button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
|
|
|
|
background: #FFF;
|
|
|
|
color: #000;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bookmarklet {
|
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2:after {
|
|
|
|
content: "";
|
|
|
|
height: 4px;
|
|
|
|
width: 70px;
|
|
|
|
background: #000;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.links {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.links li {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#links {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2014-03-08 07:47:15 -05:00
|
|
|
width: 10em;
|
2014-02-12 15:58:40 -05:00
|
|
|
left: 0;
|
|
|
|
text-align: right;
|
|
|
|
background: #333;
|
2014-02-27 09:11:37 -05:00
|
|
|
padding-top: 9.5em;
|
2014-02-12 15:58:40 -05:00
|
|
|
height: 100%;
|
|
|
|
box-shadow:inset -4px 0 20px rgba(0,0,0,0.6);
|
2014-10-12 04:24:07 -04:00
|
|
|
z-index: 15;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
2014-03-08 07:47:15 -05:00
|
|
|
margin-left: 13em;
|
2014-02-12 15:58:40 -05:00
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
|
|
|
padding-right: 5%;
|
2014-02-27 09:11:37 -05:00
|
|
|
padding-bottom: 1em;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#links a {
|
|
|
|
display: block;
|
|
|
|
padding: 0.5em 2em 0.5em 1em;
|
|
|
|
color: #FFF;
|
|
|
|
position: relative;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: normal;
|
|
|
|
font-family: 'PT Sans', sans-serif;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#links a:hover, #links a:focus {
|
|
|
|
background: #999;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#links .current:after {
|
|
|
|
content: "";
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 10px;
|
|
|
|
border-color: transparent #EEE transparent transparent;
|
|
|
|
right: 0;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#links li:last-child {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 1em;
|
2014-03-08 07:47:15 -05:00
|
|
|
width: 10em;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#links li:last-child a:before {
|
|
|
|
font-size: 1.2em;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-27 09:11:37 -05:00
|
|
|
#sort {
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
opacity: 0.5;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sort li {
|
|
|
|
display: inline;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sort li + li {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sort a {
|
|
|
|
padding: 2px 2px 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sort img {
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
#sort img:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#display-mode {
|
|
|
|
float: right;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
#listmode {
|
|
|
|
width: 16px;
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
#listmode a:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.tablemode {
|
|
|
|
background-image: url("../img/baggy/table.png");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: bottom;
|
|
|
|
}
|
|
|
|
.listmode {
|
|
|
|
background-image: url("../img/baggy/list.png");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-12 15:58:40 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
2 = Layout
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
#content {
|
|
|
|
margin-top: 5em;
|
|
|
|
min-height: 30em;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
text-align: right;
|
2014-02-27 09:11:37 -05:00
|
|
|
position: relative;
|
2014-02-12 15:58:40 -05:00
|
|
|
bottom: 0;
|
|
|
|
right: 5em;
|
|
|
|
color: #999;
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-style: italic;
|
2014-02-21 09:00:21 -05:00
|
|
|
z-index: 20;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
color: #999;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-entries {
|
|
|
|
letter-spacing:-5px;
|
|
|
|
}
|
|
|
|
|
2014-03-08 07:47:15 -05:00
|
|
|
.listmode .entrie {
|
|
|
|
width: 100%!important;
|
|
|
|
margin-left: 0!important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listmode .entrie p {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-02-12 15:58:40 -05:00
|
|
|
.list-entries + .results {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.estimatedTime a {
|
|
|
|
color: #999;
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.estimatedTime small {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie {
|
|
|
|
background: #FFF;
|
|
|
|
letter-spacing:normal;
|
|
|
|
box-shadow: 0 3px 7px rgba(0,0,0,0.3);
|
|
|
|
display: inline-block;
|
2014-04-08 16:33:28 -04:00
|
|
|
width: 32%;
|
2014-02-12 15:58:40 -05:00
|
|
|
margin-bottom: 1.5em;
|
|
|
|
vertical-align: top;
|
2014-04-08 16:33:28 -04:00
|
|
|
margin-left: 1.5%;
|
2014-02-12 15:58:40 -05:00
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 1.5em 1.5em 3em 1.5em;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:before {
|
|
|
|
content: "";
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style:solid;
|
|
|
|
border-color: transparent transparent #000 transparent;
|
|
|
|
border-width: 10px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0.3em;
|
|
|
|
z-index: 10;
|
|
|
|
right: 1.5em;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 7px;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
background: #000;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:hover {
|
|
|
|
box-shadow: 0 3px 10px rgba(0,0,0,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:hover:after {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:hover:before {
|
|
|
|
bottom: 2.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:hover h2 a {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie h2 {
|
|
|
|
text-transform: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie h2:after {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
2014-04-03 07:35:50 -04:00
|
|
|
|
2014-02-12 15:58:40 -05:00
|
|
|
.entrie h2 a {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #000;
|
|
|
|
word-wrap: break-word;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
2014-04-03 07:35:50 -04:00
|
|
|
/*
|
2014-02-12 15:58:40 -05:00
|
|
|
.entrie h2 a:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
}
|
2014-04-03 07:35:50 -04:00
|
|
|
*/
|
2014-02-12 15:58:40 -05:00
|
|
|
|
|
|
|
.entrie p {
|
|
|
|
color: #666;
|
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 1.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie h2 a:first-letter {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:hover .tools {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie .tools {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -50px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 10;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
text-align: right;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-ms-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie .tools a {
|
|
|
|
color: #666;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie .tools a:hover {
|
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie .tools li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entrie:nth-child(3n+1) {
|
2014-04-08 16:33:28 -04:00
|
|
|
margin-left: 0;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.results {
|
|
|
|
letter-spacing: -5px;
|
|
|
|
padding: 0 0 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.results > * {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
letter-spacing: normal;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
text-align: right;
|
2014-02-27 07:21:54 -05:00
|
|
|
margin-bottom:50px;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.nb-results {
|
|
|
|
text-align: left;
|
|
|
|
font-style: italic;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > * {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination a {
|
|
|
|
color: #999;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination a:hover, .pagination a:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination .disabled {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-03-12 11:36:04 -04:00
|
|
|
/* ==========================================================================
|
2014-05-16 09:34:13 -04:00
|
|
|
2.1 = "save a link" related styles
|
2014-03-12 11:36:04 -04:00
|
|
|
========================================================================== */
|
|
|
|
|
2014-04-08 16:42:34 -04:00
|
|
|
#bagit-form, #search-form {
|
2014-03-12 11:36:04 -04:00
|
|
|
background: rgba(0,0,0,0.5);
|
|
|
|
position: absolute;
|
2014-03-08 07:47:15 -05:00
|
|
|
top: 0;
|
|
|
|
left: 10em;
|
|
|
|
z-index: 20;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2014-03-12 11:36:04 -04:00
|
|
|
margin-top: -30%;
|
2014-03-08 07:47:15 -05:00
|
|
|
padding: 2em;
|
|
|
|
display: none;
|
2014-03-12 11:36:04 -04:00
|
|
|
border-left: 1px #EEE solid;
|
2014-03-08 07:47:15 -05:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:42:34 -04:00
|
|
|
#bagit-form form, #search-form form {
|
2014-03-08 07:47:15 -05:00
|
|
|
background: #FFF;
|
|
|
|
position: absolute;
|
2014-03-12 11:36:04 -04:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2014-03-08 07:47:15 -05:00
|
|
|
z-index: 20;
|
|
|
|
border: 10px solid #000;
|
2014-03-12 11:36:04 -04:00
|
|
|
width: 400px;
|
|
|
|
height: 200px;
|
|
|
|
/* margin: -150px 0 0 -300px; */
|
2014-03-08 07:47:15 -05:00
|
|
|
padding: 2em;
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:42:34 -04:00
|
|
|
a#bagit-form-close, a#search-form-close {
|
2014-03-12 11:36:04 -04:00
|
|
|
background: #000;
|
|
|
|
color: #FFF;
|
|
|
|
padding: 0.2em 0.5em;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
font-size: 0.6em;
|
|
|
|
}
|
2014-04-08 16:42:34 -04:00
|
|
|
a#bagit-form-close:hover, a#search-form-close:hover {
|
2014-03-12 11:36:04 -04:00
|
|
|
background: #999;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-current {
|
|
|
|
background-color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-current:after {
|
|
|
|
content: "";
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 10px;
|
|
|
|
border-color: transparent #EEE transparent transparent;
|
|
|
|
right: 0;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.opacity03 {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-to-wallabag-link-after {
|
|
|
|
background-color: #000;
|
|
|
|
color: #fff;
|
|
|
|
padding: 0 3px 2px 3px;
|
|
|
|
}
|
2014-03-08 07:47:15 -05:00
|
|
|
|
2014-05-16 09:34:13 -04:00
|
|
|
a.add-to-wallabag-link-after {
|
|
|
|
visibility: hidden;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
transition-duration: 2s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article article a:hover + a.add-to-wallabag-link-after, a.add-to-wallabag-link-after:hover {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
transition-duration: .3s;
|
|
|
|
transition-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.add-to-wallabag-link-after:after {
|
|
|
|
content: "w";
|
|
|
|
}
|
|
|
|
|
2014-03-13 12:37:08 -04:00
|
|
|
#add-link-result {
|
|
|
|
font-weight: bold;
|
2014-07-22 12:12:03 -04:00
|
|
|
font-size: 0.9em;
|
2014-03-13 12:37:08 -04:00
|
|
|
}
|
|
|
|
|
2014-03-23 18:52:05 -04:00
|
|
|
/* ==========================================================================
|
|
|
|
2.2 = "search for articles" popup div related styles
|
|
|
|
========================================================================== */
|
|
|
|
#search-form {
|
|
|
|
background: rgba(0,0,0,0.5);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 10em;
|
|
|
|
z-index: 20;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: -30%;
|
|
|
|
padding: 2em;
|
|
|
|
display: none;
|
|
|
|
border-left: 1px #EEE solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-form form {
|
|
|
|
background: #FFF;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 20;
|
|
|
|
border: 10px solid #000;
|
|
|
|
width: 400px;
|
|
|
|
height: 200px;
|
|
|
|
/* margin: -150px 0 0 -300px; */
|
|
|
|
padding: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a#search-form-close {
|
|
|
|
background: #000;
|
|
|
|
color: #FFF;
|
|
|
|
padding: 0.2em 0.5em;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
a#search-form-close:hover {
|
|
|
|
background: #999;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#submit-search{
|
|
|
|
margin-left: 4em;
|
|
|
|
margin-top:1em;
|
|
|
|
}
|
|
|
|
|
2014-02-12 15:58:40 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
3 = Pictos
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'icomoon';
|
2014-02-21 08:08:20 -05:00
|
|
|
src:url('../fonts/icomoon.eot?-s0mcsx');
|
|
|
|
src:url('../fonts/icomoon.eot?#iefix-s0mcsx') format('embedded-opentype'),
|
|
|
|
url('../fonts/icomoon.woff?-s0mcsx') format('woff'),
|
|
|
|
url('../fonts/icomoon.ttf?-s0mcsx') format('truetype'),
|
|
|
|
url('../fonts/icomoon.svg?-s0mcsx#icomoon') format('svg');
|
2014-02-12 15:58:40 -05:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon span {
|
|
|
|
position: absolute;
|
|
|
|
top: -9999px;
|
|
|
|
}
|
|
|
|
|
|
|
|
[class^="icon-"]:before, [class*=" icon-"]:before {
|
|
|
|
font-family: 'icomoon';
|
|
|
|
speak: none;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
text-transform: none;
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
/* Better Font Rendering =========== */
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-flattr:before {
|
|
|
|
content: "\e800";
|
|
|
|
}
|
|
|
|
.icon-mail:before {
|
|
|
|
content: "\e80a";
|
|
|
|
}
|
|
|
|
.icon-up-open:before {
|
|
|
|
content: "\e80b";
|
|
|
|
}
|
|
|
|
.icon-star:before {
|
|
|
|
content: "\e805";
|
|
|
|
}
|
|
|
|
.icon-check:before {
|
|
|
|
content: "\e804";
|
|
|
|
}
|
|
|
|
.icon-link:before {
|
|
|
|
content: "\e801";
|
|
|
|
}
|
|
|
|
.icon-reply:before {
|
|
|
|
content: "\e806";
|
|
|
|
}
|
|
|
|
.icon-menu:before {
|
|
|
|
content: "\e802";
|
|
|
|
}
|
|
|
|
.icon-clock:before {
|
|
|
|
content: "\e803";
|
|
|
|
}
|
|
|
|
.icon-twitter:before {
|
|
|
|
content: "\e807";
|
|
|
|
}
|
|
|
|
.icon-down-open:before {
|
|
|
|
content: "\e809";
|
|
|
|
}
|
|
|
|
.icon-trash:before {
|
|
|
|
content: "\e80c";
|
|
|
|
}
|
|
|
|
.icon-delete:before {
|
|
|
|
content: "\e600";
|
|
|
|
}
|
|
|
|
.icon-power:before {
|
|
|
|
content: "\e601";
|
|
|
|
}
|
|
|
|
.icon-arrow-up-thick:before {
|
|
|
|
content: "\e602";
|
|
|
|
}
|
|
|
|
.icon-rss:before {
|
|
|
|
content: "\e808";
|
|
|
|
}
|
2014-04-22 03:45:09 -04:00
|
|
|
.icon-print:before {
|
|
|
|
content: "\e80d";
|
|
|
|
}
|
2014-02-12 15:58:40 -05:00
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
Icon selected
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.icon-star.fav:before {
|
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
|
2014-10-19 05:12:25 -04:00
|
|
|
.icon-check.archive:before {
|
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
|
2014-02-12 15:58:40 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
4 = Messages
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.messages {
|
2014-02-20 12:28:39 -05:00
|
|
|
text-align: left;
|
|
|
|
margin-top: 1em;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.messages > * { display: inline-block;}
|
|
|
|
|
|
|
|
.closeMessage {
|
|
|
|
background: #000;
|
|
|
|
color: #FFF;
|
|
|
|
padding: 0.2em 0.5em;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closeMessage:hover, .closeMessage:focus {
|
|
|
|
background: #FFF;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.warning {
|
2014-04-02 15:33:06 -04:00
|
|
|
/* font-size: 3em;
|
2014-02-12 15:58:40 -05:00
|
|
|
color: #999;
|
|
|
|
font-style: italic;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
padding-right: 5%;
|
2014-04-02 15:33:06 -04:00
|
|
|
margin-top: -2em;*/
|
|
|
|
font-weight: bold;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
5 = Article
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
#article {
|
|
|
|
width: 70%;
|
|
|
|
margin-bottom: 3em;
|
2014-03-13 12:37:08 -04:00
|
|
|
text-align: justify;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#article .tags {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article i {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border:1px solid #999;
|
|
|
|
background: #FFF;
|
|
|
|
padding: 1em;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article h2, #article h3, #article h4 {
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article h2:after {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topPosF {
|
|
|
|
position: fixed;
|
|
|
|
right: 20%;
|
|
|
|
bottom: 2em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article_toolbar {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article_toolbar li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article_toolbar a {
|
|
|
|
background: #000;
|
|
|
|
padding: 0.3em 0.5em 0.2em;
|
|
|
|
color: #FFF;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article_toolbar a:hover, #article_toolbar a:focus {
|
|
|
|
background: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shaarli:before {
|
|
|
|
content: "*";
|
|
|
|
}
|
|
|
|
|
|
|
|
.return {
|
|
|
|
text-decoration: none;
|
|
|
|
margin-top: 1em;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.return:before {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notags {
|
|
|
|
font-style: italic;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-rss {
|
|
|
|
background: #000;
|
|
|
|
color: #FFF;
|
|
|
|
padding: 0.2em 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-rss:before {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-tags li {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-tags .icon-rss:hover, .list-tags .icon-rss:focus {
|
|
|
|
background: #FFF;
|
|
|
|
color: #000;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-tags a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-tags a:hover, .list-tags a:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-07-22 13:17:15 -04:00
|
|
|
pre code {
|
|
|
|
font-family: "Courier New", Courier, monospace;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
font-size: 0.96em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-12 15:58:40 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
6 = Media Queries
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
@media screen and (max-width: 1050px) {
|
|
|
|
.entrie {
|
|
|
|
width: 49%;
|
|
|
|
}
|
|
|
|
.entrie:nth-child(3n+1) {
|
|
|
|
margin-left: 1.5%;
|
|
|
|
}
|
|
|
|
.entrie:nth-child(2n+1) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 900px) {
|
|
|
|
#article {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
.topPosF {
|
|
|
|
right: 2.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
.entrie {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2014-02-27 09:11:37 -05:00
|
|
|
#display-mode {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
.entrie {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
body > header {
|
|
|
|
background: #333;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 3em;
|
|
|
|
z-index: 11;
|
|
|
|
}
|
|
|
|
#links li:last-child {
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
#links li:last-child a:before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
.logo {
|
2014-05-19 06:59:49 -04:00
|
|
|
width: 1.25em;
|
|
|
|
height: 1.25em;
|
2014-02-12 15:58:40 -05:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.login > header {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
.login form {
|
|
|
|
width: 100%;
|
|
|
|
position: static;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.login .logo {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
top: 0.5em;
|
|
|
|
width: 75px;
|
|
|
|
height: 75px;
|
|
|
|
margin-left: -37.5px;
|
|
|
|
}
|
|
|
|
.desktopHide {
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 20;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
border:0;
|
|
|
|
width: 2.5em;
|
|
|
|
height: 2.5em;
|
|
|
|
cursor: pointer;
|
|
|
|
background: #999;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
.desktopHide:hover, .desktopHide:focus {
|
|
|
|
background: #FFF;
|
|
|
|
}
|
|
|
|
#links {
|
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
padding-top: 3em;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
position: static;
|
|
|
|
margin-right: 3em;
|
|
|
|
}
|
|
|
|
#main {
|
|
|
|
margin-left: 1.5em;
|
|
|
|
padding-right: 1.5em;
|
|
|
|
position: static;
|
2014-05-19 06:59:49 -04:00
|
|
|
margin-top: 3em;
|
2014-02-12 15:58:40 -05:00
|
|
|
}
|
|
|
|
#article_toolbar .topPosF {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article h1 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
#article_toolbar a {
|
|
|
|
padding: 0.3em 0.4em 0.2em;
|
|
|
|
}
|
2014-02-27 09:11:37 -05:00
|
|
|
|
|
|
|
#display-mode {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-03-12 11:36:04 -04:00
|
|
|
|
2014-04-08 16:42:34 -04:00
|
|
|
#bagit-form, #search-form {
|
2014-03-12 11:36:04 -04:00
|
|
|
left: 0;
|
|
|
|
}
|
2014-02-20 12:28:39 -05:00
|
|
|
}
|
2014-07-22 13:17:15 -04:00
|
|
|
|