1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00

Display paste lifetime in frontend

This commit is contained in:
Lukas Schulte Pelkum
2022-01-29 18:25:01 +01:00
parent c7fcdeb91c
commit 6f610a48ec
6 changed files with 76 additions and 1 deletions

View File

@@ -250,6 +250,22 @@ html.embedded #footer, body.embedded #footer {
margin-top: 0;
}
.container #lifetime_container {
position: fixed;
right: 30px;
top: 90px;
padding: 10px 15px;
background-color: #222222;
border-radius: 10px;
}
.container #lifetime_container #lifetime {
background-color: #111111;
margin-left: 10px;
padding: 5px 10px;
border-radius: 10px;
}
#footer {
position: fixed;
bottom: 0;

File diff suppressed because one or more lines are too long

View File

@@ -208,6 +208,20 @@ html, body {
}
}
}
& #lifetime_container {
position: fixed;
right: 30px;
top: 90px;
padding: 10px 15px;
background-color: #222222;
border-radius: 10px;
& #lifetime {
background-color: #111111;
margin-left: 10px;
padding: 5px 10px;
border-radius: 10px;
}
}
}
#footer {